SQL语句实战(一)

SQL实战练习 目标数据库结构 1.简单查询 1、查询“001”课程比“002”课程成绩高的所有学生的学号; Select a.SID from (select SID,score from SC where CID=’001’) a, (select SID,score from SC where CID=’002’) b where a.score>b.score and a.SID=b.SI
相关文章
相关标签/搜索