3、 使用ANY子查询查找学号为0001的学生的分数比学号为0002的学生的最低分高的课程编号和分数。
时间: 2023-05-23 22:06:58 浏览: 190
数据查询:学生管理系统练习
SELECT course_id, score FROM scores WHERE student_id = '0001' AND score > ANY (SELECT score FROM scores WHERE student_id = '0002' ORDER BY score LIMIT 1);
阅读全文