在網上看見幾個sql練習的題目,又搜了一些其餘的解法,寫一下本身的理解。sql
建立四張表:Course(課程)、SC(成績)、Student(學生)、Teacher(老師)spa
Student中包括sid、sname、sage、ssex;code
SC中包括sid、cid、score;blog
個人思路比較簡單,從SC中提出sid、AVG(score)到t1,再鏈接到Studentci
1 SELECT t1.sid AS 學號,sname AS 姓名,score AS 平均分 FROM 2 (SELECT sid,AVG(score) AS score from SC GROUP BY sid HAVING AVG(score) < 60)t1 3 LEFT JOIN Student ON t1.sid = Student.sid
結果以下:io
各位如有建議與疑問,歡迎提出討論;如有什麼不對之處,歡迎批評指正。class