码迷,mamicode.com
首页 > 数据库 > 详细

常用典型的sql语句

时间:2018-05-14 23:04:10      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:cno   field   end   等于   sel   sql   The   from   inf   

1、两张表,怎么把一张表中的数据插入到另一张表中?

1,insert into table_a select * from table_b

2,insert into table_a(field_a1,field_a2,field_a3) select field_b1,field_b2,field_b3 from table_b

2、查询总score>100 cno

技术分享图片

 

查询:select cno,sum(score) from sc group by cno having sum(score)>100

判断:select cno,sum(score) from sc where sum(score)>100 and cno=#{cno}

3、查出数据前几条最大的

MYSQLselect t.* from (select sno,cno from sc order by cno desc limit 0,3) t order by sno

4、有一张table-t,里面有三个字段:英语,其中有三条记录分别表示语文70,数学80,英语58,请用一条sql语句查询出这三条记录并按以下条件显示出来:
大于或等于80表优秀,大于等于60表及格,小于60表不及格显示格式:
及格 优秀 不及格

技术分享图片

 

select t.yuwen as ‘语文‘,t.shuxue as ‘数学‘,t.english as ‘英语‘ from

(select case when yuwen>=80 then ‘优秀‘ when yuwen>=60 then ‘及格‘ else ‘不及格‘ end yuwen,

case when shuxue>=80 then ‘优秀‘ when shuxue>=60 then ‘及格‘ else ‘不及格‘ end shuxue,

case when english>=80 then ‘优秀‘ when english>=60 then ‘及格‘ else ‘不及格‘ end english

from table_t) t

4、计算及格率

select concat(sum(case when score>60 then 1 else 0 end)/count(*)*100,%) as score from sc

5、 将某列的行内容变成列字段名

技术分享图片变为技术分享图片

select name,sum(case when sub=‘语文‘ then sco end) ‘语文‘,
SUM(case when sub=‘数学‘ then sco end)‘数学‘,SUM(case when sub=‘英语‘ then sco end) ‘英语‘
from score1 GROUP BY name

注:技术本身无底线,随时更新

常用典型的sql语句

标签:cno   field   end   等于   sel   sql   The   from   inf   

原文地址:https://www.cnblogs.com/jincheng81/p/9038435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!