8、在学生选课数据库中有学生表student(sno,sname,ssex,sage,sdept),课程表course(cno,cname)及学生选课表sc(sno,cno,grade),其中sno是学号,sname是姓名,ssex是性别,sage是年龄,sdept是系别,cno是课程号,cname是课程名,grade是成绩。以下哪条语句可以实现查询选了课的学生人数()。

A.select count(*) from sc B.select count(sno) from sc C.select count(distinct sno) from sc D.select count(cno) from sc

时间:2024-04-23 18:16:47

相似题目