SQL經典練習題48道之七(41-48)
接上篇 SQL經典練習題48道之六(36-40)
41、查詢Student表中最大和最小的Sbirthday日期值。
答:
select max(sbirthday),min(sbirthday) from student;
42、以班號和年齡從大到小的順序查詢Student表中的全部記錄。
答:
select * from student order by classnum desc,sbirthday asc;
43、查詢“男”教師及其所上的課程。
答:
select * from course where tno in(select tno from teacher where tsex=’男’);
44、查詢最高分同學的Sno、Cno和Degree列。
答:
select sno,cno,degree from score where degree=(select MAX(degree) from score);
45、查詢和“李軍”同性別的所有同學的Sname.
答:
select sname from student where ssex=(select ssex from student where sname=’李軍’);
46、查詢和“李軍”同性別並同班的同學Sname.
答:
select sname from student where ssex=(select ssex from student where sname=’李軍’) and classnum=(select classnum from student where sname=’李軍’);
47、查詢所有選修“計算機導論”課程的“男”同學的成績表
答:
select * from score where cno=(select cno from course where cname=’計算機導論’) and sno in (select sno from student where ssex=’男’);
48、查詢最高分同學的Sname、Cno和Degree列。
答:
select sname,cno,degree from (select sno,cno,degree from score where degree=(select MAX(degree) from score) )s1 left join student s2 on s1.sno=s2.sno;
相關文章
- SQL經典練習題48道之四(26-30)SQL
- SQL經典練習題48道之五(31-35)SQL
- SQL經典練習題48道之六(36-40)SQL
- SQL經典練習題48道之一(1-10)SQL
- SQL經典練習題48道之二(11-19)SQL
- SQL經典練習題48道之三(20-25)SQL
- [資料庫]50道經典SQL練習題,使用MySQL5.7解答資料庫MySql
- 七道最經典的asp.net頁面傳值題ASP.NET
- 【MySQL】經典資料庫SQL語句編寫練習題——SQL語句掃盲MySql資料庫
- 20道JavaScript經典面試題JavaScript面試題
- 多表查詢經典練習
- 解決SQL Server常見的七個經典問題SQLServer
- 記一道經典前端題前端
- SQL經典五十道題SQL
- 經典SQL面試題1SQL面試題
- 經典SQL面試題2SQL面試題
- SQL 練習題SQL
- SQL練習題SQL
- 七大快取經典問題快取
- SQL經典面試題及答案SQL面試題
- 總結!Python培訓之10道經典的面試題Python面試題
- oracle sql練習題OracleSQL
- 【整理】8道Python經典面試題合集!Python面試題
- SQL language裡面的經典問題SQL
- 揹包問題的一道經典問題
- openGauss核心分析(七):SQL by pass & 經典執行器SQL
- 幾道經典的幾何作圖趣題
- 9道python基礎練習題Python
- 25道經典Java演算法題(含程式碼)Java演算法
- 精心整理的8道Python經典面試題合集!Python面試題
- 16道嵌入式C語言面試題(經典)面試題
- 50道經典的JAVA程式設計題(目錄)Java程式設計
- 離散化的一道很經典的題
- java經典程式設計題30道題,強烈推薦Java程式設計
- Scala學習(七)練習
- sql 經典面試題及答案(選課表)SQL面試題
- ORACLE SQL命令經典OracleSQL
- 經典SQL-1SQL