设有S(学号,姓名,性别)和SC(学号,课程号,成绩)两个表,如下SQL语句检索选修的每门课程的成绩都高于或等于85分的学生的学号、姓名和性别,正确的SQL命令是( )。
- A.select 学号,姓名,性别 from s where exists ( select * from sc where sc.学号 = s.学号 and成绩 <= 85 )
- B.select 学号,姓名,性别 from s where not exists ( select * from sc where sc.学号 = s.学号 and成绩 <= 85 )
- C.select 学号,姓名,性别 from s where exists (select * from sc where sc.学号 = s.学号 and成绩 > 85 )
- D.select 学号,姓名,性别 from s where not exists ( select * from sc where sc.学号 = s.学号 and成绩 < 85 )
热度🔥259
解析:打开微信小程序查看本题解析