



下載本文檔
版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、.實(shí)驗(yàn)五 數(shù)據(jù)庫(kù)綜合查詢(xún)一、實(shí)驗(yàn)?zāi)康?. 掌握SELECT語(yǔ)句的基本語(yǔ)法和查詢(xún)條件表示方法;2. 掌握查詢(xún)條件種類(lèi)和表示方法;3. 掌握連接查詢(xún)的表示及使用;4. 掌握嵌套查詢(xún)的表示及使用;5. 了解集合查詢(xún)的表示及使用。二、實(shí)驗(yàn)內(nèi)容1. 了解SELECT語(yǔ)句的基本語(yǔ)法格式和執(zhí)行方法;2. 以數(shù)據(jù)庫(kù)原理實(shí)驗(yàn)5數(shù)據(jù)為基礎(chǔ),請(qǐng)使用T-SQL 語(yǔ)句實(shí)現(xiàn)進(jìn)行相應(yīng)操作;3. 完成實(shí)驗(yàn)報(bào)告。三、實(shí)驗(yàn)步驟1. 查詢(xún)以數(shù)據(jù)_開(kāi)頭,且倒數(shù)第3個(gè)字符為結(jié)的課程的詳細(xì)情況 select*from coursewhere Cname like 數(shù)據(jù)_%結(jié)_escape2. 查詢(xún)名字中第2個(gè)字為陽(yáng)的學(xué)生姓名和學(xué)號(hào)及選修
2、的課程號(hào)、課程名; select sname 姓名,student.sno 學(xué)號(hào),o 課程號(hào),ame 課程名from student,course,sc where student.sno=sc.sno and o=o and sname like_陽(yáng)%3. 列出選修了數(shù)學(xué)或者大學(xué)英語(yǔ)的學(xué)生學(xué)號(hào)、姓名、所在院系、選修課程號(hào)及成績(jī); select student.sno,sname,sdept,cno,gradefrom student,scwhere student.sno=sc.sno and cno IN(select cno
3、 from course where cname=數(shù)學(xué)OR CNAME=大學(xué)英語(yǔ))4. 查詢(xún)?nèi)鄙俪煽?jī)的所有學(xué)生的詳細(xì)情況; select*from student where not exists(select*from sc where sno=student.sno and grade is not null)select*from student where sno in(select sno from sc where grade is null)5. 查詢(xún)與張力(假設(shè)姓名唯一)年齡不同的所有學(xué)生的信息; select b.*from student a,student b where
4、 a.sname=張力and a.sageb.sage6. 查詢(xún)所選課程的平均成績(jī)大于張力的平均成績(jī)的學(xué)生學(xué)號(hào)、姓名及平均成績(jī); select student.sno,sname,平均成績(jī)=avg(grade)from student,sc where sc.sno=student.sno group by student.sno,sname having avg(grade)(select avg(grade)from sc where sno=(select sno from student where sname=張力)7. 按照“學(xué)號(hào),姓名,所在院系,已修學(xué)分”的順序列出學(xué)生學(xué)分的獲得
5、情況。其中已修學(xué)分為考試已經(jīng)及格的課程學(xué)分之和; select student.sno 學(xué)號(hào),sname 姓名,sdept 院系,已修學(xué)分=sum(credit)from student,course,sc where student.sno=sc.sno and o=o and grade=60 group by student.sno,sname,sdept8. 列出只選修一門(mén)課程的學(xué)生的學(xué)號(hào)、姓名、院系及成績(jī); select student.sno 學(xué)號(hào),sname 姓名,sdept 院系,gradefrom student,sc where student.
6、sno=sc.sno and sc.sno in(select sno from sc group by sno having count(cno)=1)9. 查找選修了至少一門(mén)和張力選修課程一樣的學(xué)生的學(xué)號(hào)、姓名及課程號(hào); select distinct student.*from student where sno in(select sno from sc where cno in(select cno from course where cname=數(shù)據(jù)庫(kù)or cname=數(shù)據(jù)結(jié)構(gòu))10. 只選修“數(shù)據(jù)庫(kù)”和“數(shù)據(jù)結(jié)構(gòu)”兩門(mén)課程的學(xué)生的基本信息; select o,am
7、e,x.sno,x.sname,grade from student x,sc y,course z where x.sno=y.sno and o=o11. 至少選修“數(shù)據(jù)庫(kù)”或“數(shù)據(jù)結(jié)構(gòu)”課程的學(xué)生的基本信息;select *from student,sc,coursewhere student.sno=sc.snoand o=oand cname=數(shù)據(jù)庫(kù)orcname=數(shù)據(jù)結(jié)構(gòu)12. 列出所有課程被選修的詳細(xì)情況,包括課程號(hào)、課程名、學(xué)號(hào)、姓名及成績(jī); select o,ame,student.sno,stu
8、dent.sname,gradefrom student,sc,coursewhere student.sno=oand o=o13. 查詢(xún)只被一名學(xué)生選修的課程的課程號(hào)、課程名; select cno,cnamefrom coursewhere cno in(select cnofrom scgroup by cnohaving count(sno)=1)14. 使用嵌套查詢(xún)列出選修了“數(shù)據(jù)結(jié)構(gòu)”課程的學(xué)生學(xué)號(hào)和姓名; select sno,snamefrom studentwhere sno in(select snofrom scwhere cno
9、in(select cnofrom coursewhere cname=數(shù)據(jù)結(jié)構(gòu))15. 使用嵌套查詢(xún)查詢(xún)其它系中年齡小于CS系的某個(gè)學(xué)生的學(xué)生姓名、年齡和院系; select sname,sage,sdeptfrom studentwhere sage(select max(sage)from studentwhere sdept=csand sdeptcs)16. 使用ANY、ALL 查詢(xún),列出其他院系中比CS系所有學(xué)生年齡小的學(xué)生; select sname,sagefrom studentwhere sageany(select min(sage)from studentwhere s
10、dept=csand sdeptcs)select sname,sagefrom studentwhere sageall(select sagefrom studentwhere sdept=csand sdeptcs)17. 分別使用連接查詢(xún)和嵌套查詢(xún),列出與張力在一個(gè)院系的學(xué)生的信息; select*from studentwhere sdept=(select sdeptfrom studentwhere sname=張力)18. 使用集合查詢(xún)列出CS系的學(xué)生以及性別為女的學(xué)生名單; select snamefrom studentwhere sdept=csunionselect snamefrom studentwhere ssex=女19. 使用集合查詢(xún)列出CS系的學(xué)生與年齡不大于19歲的學(xué)生的交集、差集; select*from stude
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 紅曲霉、米曲霉、根霉混合發(fā)酵產(chǎn)酶特性及其發(fā)酵紅棗蒸餾酒的應(yīng)用
- 從細(xì)節(jié)處見(jiàn)梅韻
- 三恒系統(tǒng)合同范本
- 倉(cāng)庫(kù)物流合同范本
- 農(nóng)村魚(yú)塘招標(biāo)合同范例
- 出售田園土地合同范例
- 中藥飲獨(dú)家購(gòu)銷(xiāo)合同范例
- 兩方購(gòu)房合同范例
- 農(nóng)戶(hù)屋頂租賃合同范例
- 個(gè)人雇傭合同范例10篇
- 品德家庭小賬本
- 癥狀性大腦中動(dòng)脈慢性閉塞血管內(nèi)開(kāi)通治療課件
- 大象版科學(xué)四年級(jí)下冊(cè)第一單元測(cè)試卷(含答案)
- 蘇教版一年級(jí)數(shù)學(xué)下冊(cè)第二單元《認(rèn)識(shí)圖形(二)》教材分析(定稿)
- 小學(xué)班會(huì)課件-端午節(jié)主題班會(huì)(共19張PPT)通用版 PPT課件
- 約等于計(jì)算題100道乘除法
- 水泵站工程施工設(shè)計(jì)方案
- 新聞?lì)愇捏w的翻譯(課堂PPT)
- 員工年終述職報(bào)告工作總結(jié)PPT模板
- 現(xiàn)代寫(xiě)作教程筆記
- 小小銀行家ppt課件
評(píng)論
0/150
提交評(píng)論