引言
是時(shí)候復(fù)習(xí)一波SQL語句的語法了,無需太深,但總得會(huì)用啊。
語法
一步步由淺到深,這里用的都是mysql做的。
基礎(chǔ)
連接數(shù)據(jù)庫
mysql -h10.20.66.32 -uroot -p123456
-h后面是mysqlServer所在地址,-u后面是用戶名,-p后面是密碼
查看數(shù)據(jù)庫
show databases;
使用數(shù)據(jù)庫
use test;
查看表
show tables;
查看表結(jié)構(gòu)
desc winton
建表
create table t1(
id int not null primary key,
name char(20) not null
);
語法 create table 表名稱( 字段名 字段名類型 字段描述符,字段名 字段類型 字段描述符);
刪除表
drop table test;
語法:drop table 表名稱;
修改表
添加字段
alter table t1 add(score int not null);
語法:alter table 表明稱 add(字段名 類型 描述符);
移除字段
alter table t1 drop column score;
語法:alter table 表名 drop colunm 字段名,drop colunm 字段名;
變更字段
alter table t1 change name score int not null;
語法:alter table 表名 change 舊字段名 新字段名 新字段描述符
插入
全字段插入
insert into winton values(001,'zww'),(002,'rs');
語法:insert into 表名 values(字段1值,字段2值,……),(字段1值,字段2值,……);
個(gè)別字段插入
insert into winton(id) values(004);
查看插如后的結(jié)果,如上圖所示。
語法:insert inton 表名(字段名) values(值一),(值二);
普通查詢
單表全字段查詢
select * from t1;
語法:select * from 表名;
單表個(gè)別字段查詢
select id from t1;
語法:select 字段一,字段二 from 表名;
多表查詢
select t1.id,t1.score,winton.name from t1,winton;
語法:select 表一字段,表二字段,表三字段,…… from 表一,表二,表三,……;
條件查詢
單表?xiàng)l件查詢
select * from t1 where socre>90;
語法:select 字段1,字段2 from 表名 where 條件;
多表?xiàng)l件查詢
select t1.id,t1.score,winton.name from t1,winton where t1.id=winton.id;
語法:select 表一字段,表二字段 from 表一,表二 where 條件;
嵌套查詢
select name from winton where id=(select id from t1 where score=90);
語法:select 字段一,字段二…… from 表名 where 條件(查詢);
并查詢
(select id from t1 )union(select id from winton);
交查詢
select id from t1 where id in (select id from winton);
刪除
delete from winton where id=4;
語法:delete from 表名 where 條件;
更新
update t1 set score=69 where id=2;
語法:update 表名 set 更改的字段名=值 where 條件;
常用函數(shù)
求和
select sum(score) from t1;
注:sum(字段) 對(duì)字符串和時(shí)間無效
求平均值
select avg(score) from t1;
注:avg(字段)對(duì)字符串和時(shí)間無效
計(jì)數(shù)
select count(*) from t1;
注:count(字段名)不包含NULL;
求最大值
select max(name) from winton;
注:max(colunm)返回字母序最大的,返回?cái)?shù)值最大的
求最小值
select min(name) from winton;
注:min(colunm)返回字母序最小值,返回?cái)?shù)值最小值
常用的修飾符
distinct 字段中值唯一
select distinct name from winton;
limit查詢結(jié)果數(shù)限制
select * from winton limit 2;
order by 排序
select * from winton order by name;
注:默認(rèn)是升序
desc 降序
slelect * from winton order by name desc;
asc 升序
select * from winton order by name asc;
group by 分組
select name from winton group by name;
索引
創(chuàng)建普通索引
create index wintonIndex on winton (name);
語法:create index 索引名稱 on 表名 (字段一,字段二,……);
創(chuàng)建唯一索引
create unique index wintonIndex on winton (id);
語法:create unique index 索引名 on 表名 (字段一,字段二,……);
ps:unique index 要求列中數(shù)據(jù)唯一,不能出現(xiàn)重復(fù)。
移除索引
drop index wintonIndex on winton;
語法: drop index 索引名 on 表名;
|