SQL 练习15

  • 检索" 01 "课程分数小于 60,按分数降序排列的学生信息
SELECT Student.* ,SC.score from Student,SC WHERE sc.cid = '01' AND SC.score < 60 AND Student.SId = sc.sid ORDER BY score DESC

image

posted @ 2021-08-19 18:20  弩哥++  阅读(17)  评论(0编辑  收藏  举报