程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> MSSQL >> 分享整頓的12條sql語句連同數據

分享整頓的12條sql語句連同數據

編輯:MSSQL

分享整頓的12條sql語句連同數據。本站提示廣大學習愛好者:(分享整頓的12條sql語句連同數據)文章只能為提供參考,不一定能成為您想要的結果。以下是分享整頓的12條sql語句連同數據正文


俺認為自 己試著寫寫sql,調試調試照樣有贊助的,讀人家sql例子似乎讀懂了,本身寫就未 必思緒准確,調試得通,寫得簡練。

隨著網下流行的先生選課表的例子溫習了一下: http://www.jb51.net/article/30655.htm

這篇文字在網上被轉載爛了,外面有些sql合適用在運用體系裡,有些“報表”的感 覺更重些,重要是想溫習前者。前20條年夜體還挺好,後30條顯著偏報表作風了,而 且前面選例良莠不齊,選了12個例子做演習,(其實許多語法,case, any/all, union之類的都沒包含),用mysql數據庫,並同享本身造出來的數據。關於這12條 sql, 修改了原文中有忽略的處所。

sql是根本技巧,若能寫得好也挺出色的,還在持續演習。毫不倡導盡力寫龐雜sql 處理營業成績。運用體系裡假如存在很龐雜的sql,常常提醒了營業邏輯向下洩漏 到sql層的成績,晦氣於保護和擴大,固然如許確切常能進步運轉效力。詳細情形 自行棄取。
上面的例子都是比擬通用的sql, 其實針對特定的數據庫,須要學的也挺多,好比 oracle db的decode函數, rowid, rownum, connect by 固然欠亨用,然則很適用。

數據可以在這裡下載,只是用作演習,沒做任何外鍵聯系關系:http://xiazai.jb51.net/database/20120626051553698.txt

整頓的sql鄙人面:
Student(S#,Sname,Sage,Ssex) 先生表
Course(C#,Cname,T#) 課程表
SC(S#,C#,score) 成就表
Teacher(T#,Tname) 教員表

1. 選出每門作業都合格的學號
select distinct `s#` from sc where `s#` not in (select `s#` from sc where score <60)
2. 查詢“1”課程比“2”課程成就高的一切先生的學號;
SELECT c01.`s#` from (select `s#`, `score` from sc where `c#`=1) c01,
(select `s#`, `score` from sc where `c#`=2) c02
where c01.`s#` = c02.`s#` and c01.score > c02.score
3. 查詢均勻成就年夜於60分的同窗的學號戰爭均成就;
select `s#`, avg(score) from sc group by `s#` having avg(score) > 60
4. 查詢一切同窗的學號、姓名、選課數、總成就;
select student.`s#`, student.`Sname`, count(`c#`), sum(score) from student left outer join sc on student.`s#` = sc.`s#` group by student.`s#`, sc.`s#`

5.查詢沒學過“葉平”先生課的同窗的學號、姓名;
select student.`s#`, student.`Sname` from student where student.`s#` not in (select distinct(sc.`s#`) from teacher, course, sc where Tname='葉平' and teacher.`t#` = course.`t#` and sc.`c#`= course.`c#` )
6. 查詢學過“001”而且也學過編號“002”課程的同窗的學號、姓名
select student.`s#`, student.sname from student, sc where student.`s#` = sc.`s#` and sc.`c#` = 1 and exists (select * from sc sc_2 where sc_2.`c#`=2 and sc.`s#`=sc_2.`s#`)
7. 查詢學過“葉平”先生所教的一切課的同窗的學號、姓名 (奇妙)
select `s#`, sname from student where `s#` in
(select `s#` from sc, teacher, course where tname='葉平' and teacher.`t#`=course.`t#` and course.`c#`= sc.`c#` group by `s#` having count(sc.`c#`)=
(select count(`c#`) from teacher, course where tname='葉 平' and teacher.`t#`=course.`t#`) )

8. 查詢課程編號“002”的成就比課程編號“001”課程低的一切同窗的學號、姓名 (有代表性)
select `s#`, sname from (select student.`s#`, student.sname, score, (select score from sc sc_2 where student.`s#`=sc_2.`s#` and sc_2.`c#`=2) score2 from student , sc where
sc.`s#`=student.`s#` and sc.`c#`=1) s_2 where score2 < score
9.查詢沒有學全一切課的同窗的學號、姓名
select student.`S#`, Sname from student, sc where student.`s#` = sc.`s#` group by `s#`, sname having count(`c#`) < (select count(`c#`) from course)

10. 查詢至多有一門課與學號為“002”的同窗所學雷同的同窗的學號和姓名;
select distinct(sc.`s#`), sname from student, sc where student.`s#`=sc.`s#` and `c#` in (select `c#` from sc where `s#`=002)
11. 把“SC”表中“葉平”先生教的課的成就都更改成此課程的均勻成就;

update sc inner join
(select sc2.`c#`, avg(sc2.score) score from sc sc2, teacher, course where
sc2.`c#`=course.`c#` and tname='葉平' and teacher.`t#` = course.`t#` and course.`c#`=sc2.`c#` group by course.`c#`) sc3 on sc.`c#`=sc3.`c#` set sc.score=sc3.score
12. 查詢2號的同窗進修的課程他都學了的同窗的學號;(留意懂得:where語句的 第一個前提過濾失落不知足c#的記載,再group by,就比擬清楚)
select `S#` from SC where `C#` in (select `C#` from SC where `S#`=2)
group by `S#` having count(*)=(select count(*) from SC where `S#`=2);

作者 人在江湖
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved