题目内容

使用jxgl数据库,查询没有被选修过的课程的课程号和课程名。select cno,cname from Course______ join sc on Course.cno=sc.cno______ where Course.cno = Null______

查看答案
更多问题

使用jxgl数据库,查询所有同学的选修课的门数,包括选修了课程和还未选修课程的同学。select sno,COUNT(*)______ from Students left join SC on Students.sno=SC.snogroup by sno______

使用jxgl数据库,删除选课表中没有成绩的记录delete * from sc______ where score = null______

使用jxgl数据库,查询出生年份大于计科专业的最大出生年份的老师的所有信息。select *from Teachershaving year(tbirthday)>______ (select MAX(year(tbirthday))from Teachers where tdept='计科'______ )

使用jxgl数据库,创建视图v1,显示课程号和每门课程的平均分。create view v_avg______ select cno,avg(score)as 平均分from sc______

答案查题题库