SQL补充

SQL查漏补缺

1.基本语句

创建 create table 表名(int check(限制数值范围),decimal(精确,小数点位), primary key(),foreign key(外键 reference主键表(列名)))

插入语句insert into table(字段) value(值)

更新语句update table set col=‘’ where

删除语句delete from

视图create view 视图名 as select 

exists 检查返回外表是否有匹配的内表数据 

concat合并两个单元格

cast(字段 as 格式)

 

2.扩展

语文数学英语三科分数均超过80份的名字

select name from s where score>=80
group by name having count(name)=3

select name from s
group by name having min(score)>=80

 

行列互换

年         季度        销售量
1991       1             11
1991       2             12
1991       3             13
1991       4             14
1992       1              21
1992       2              22
1992       3              23
1992       4              24

select year,
sum(case when month=‘1‘ then amount else 0 end) m1,
sum(case when month=‘2‘ then amount else 0 end) m2
from y
group by year

 

删除自动编号不同但其他信息相同的内容

id 号 学号 姓名 课程编号 课程名称 分数
1 2005001 张三 0001 数学 69
2 2005002 李四 0001 数学 89
3 2005001 张三 0001 数学 69

delete from student2 where id not in(select mid from (select min(id) mid
from student2 group by name) as t);

 

区间统计

select kechen,
(case when score>=80 then ‘优秀‘
when score>=60 then ‘及格‘
when score<60 then ‘不及格‘ END)
from s
group by kechen

 

SQL补充

上一篇:C# 连接EXCEL和ACCESS字符串2003及2007版字符串说明


下一篇:MySQL查询时间常用函数