请在 下方输入 要搜索的题目:

对于student学生表(sno,sname,sex,sage,sdept)以及选课表sc(sno,cno,grade),请问”查询刘佳同学得选课”,其SQL语句为?( )


A、select sc.* from student,sc where student.sno=sc.sno and sname=’刘佳’;
B、select sc.* from student inner join sc on student.sno=sc.sno and sname=’刘佳’;
C、select sc.* from student,sc where sname=’刘佳’;
D、select sc.* from student,sc where student.sno=sc.sno ;

发布时间:2025-06-25 00:29:52
推荐参考答案 ( 由 快搜搜题库 官方老师解答 )
联系客服
答案:select sc.* from student,sc where student.sno=sc.sno and sname=’刘佳’; ■select sc.* from student inner join sc on student.sno=sc.sno and sname=’刘佳’;
专业技术学习
相关试题
专业技术学习
搜搜题库系统