• 2022-06-07
    查询选修了'数据库基础'课程的同学的学号,和这些同学选修的全部课程号和分数.select sno,cno,gradefrom ______________________
    A: sc where sno in (select sno from sc join course on sc.cno=course.cno where cname='数据库基础')
    B: sc join course on sc.cno=course.cno where cname='数据库基础'
    C: sc where sno in (select sno from course where cname='数据库基础')
    D: sc where cno in (select cno from course where cname='数据库基础')
  • 举一反三