小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

MySQL常用基本操作

 楊貴妃妃 2016-03-09
/*DDL(Data Definition Language)數(shù)據(jù)定義語言*/
   ##創(chuàng)建數(shù)據(jù)庫:
create database '數(shù)據(jù)庫名稱' charset utf8;
   ##刪除數(shù)據(jù)庫:
drop database '數(shù)據(jù)庫名稱';
   ##顯示所有數(shù)據(jù)庫:
show databases;
   ##使用數(shù)據(jù)庫
use '數(shù)據(jù)庫名稱';
   ##確定當(dāng)前使用數(shù)據(jù)庫:
select database();
   ##顯示數(shù)據(jù)庫中某表結(jié)構(gòu)
desc '表名';
   ##顯示某表的創(chuàng)建語句
show create table '表名';
   ##創(chuàng)建表:
create table '表名'(
   '列名' '列描述',
'列名' '列描述',
'列名' '列描述');
   ##帶主鍵且自增長的表
create table '表名'(
   '列名' '列描述' primary key auto_increment,
   '列名' '列描述',
'列名' '列描述');
   ##刪除表:
drop table '表名';
   ##修改表:
alter table '舊表名' rename '新表名';
   ##添加字段
alter table '表名' add column '列名' '列描述';
   ##修改字段
alter table '表名' change '舊列名' '新列名' '新列描述';
   ##刪除字段
alter table '表名' drop column '列名';
/*DML(Data Manipulation Language)數(shù)據(jù)操作語言*/
   ##錄入數(shù)據(jù)
insert into '表名'('字段名,字段名...') values('對(duì)應(yīng)值,對(duì)應(yīng)值...');
insert into  '表名' values('對(duì)應(yīng)值,對(duì)應(yīng)值...');
   ##更新數(shù)據(jù)
update '表名' set '字段名'='字段值','字段名'='字段值'... where '字段名'='字段值';
update '表名' set '字段名'='字段值','字段名'='字段值'...;
   ##刪除數(shù)據(jù)
delete from '表名';
delete from '表名' where '字段名'='字段值';
/*DQL(Data Queries Language)數(shù)據(jù)查詢語言*/
   ##查詢所有
select * from '表名';
   ##查詢需要的
select '字段名','字段名'... from '表名';
   ##別名查詢
select '字段名',concat('字段名','字段名') [as] '別名' from '表名';
   ##where查詢
select * from '表名' where '字段名' like '_'值'%'
   ##聚合查詢
select count(*) from '表名';  ##查詢記錄數(shù)
select '字段名' from '表名' order by '字段名' desc;     ##依降序查詢
select distinct '字段名' from '表名' order by '字段名' asc;     ##去重復(fù)依升序查詢
##分組查詢
select avg('字段名') from '表名' group by '字段名';
select avg(字段名) as '別名','別名' from '字段名' group by '字段名' having '字段名'>0;
/*DCL(Data Control Language)數(shù)據(jù)控制語言*/
/*約束*/
##主鍵約束
alter table '表名' add constraint primary key('字段名');
##唯一約束
alter table '表名' add constraint unique('字段名');
##外鍵約束
alter table '表名' add constraint foreign key('外鍵字段名') references '主表'('主鍵字段名');

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多