首先,我们需要准备一个包含学生学号、课程1成绩、课程2成绩的数据库表。可以使用以下SQL语句创建一个名为students的表: CREATETABLEstudents(student_idINTPRIMARYKEY,course1_scoreINT,course2_scoreINT); 1. 2. 3. 4. 5. 接下来,我们需要向表中插入一些示例数据: INSERTINTOstudents(student_id,course1_score,...
(select sid from sc where score<60 group by sid having count(*)>=2) group by sid; 1. 2. 3. 4. 5. 6. 6. 查询2号课程成绩比1号课程成绩低的学生的学号、姓名 (select sid,cid,score from sc where cid=1) a (select sid,cid,score from sc where cid=2) b (select a.sid from (s...