题目内容

使用jxgl数据库,查询平均分高于80分的课程号select cno from sc______ where avg(score)>80______

查看答案
更多问题

使用jxgl数据库,查询“17物流1”班的学生信息,按姓名逆序排列select *from studentsorder by sname______ where class='17物流1'______

使用jxgl数据库,查询学生的学号、姓名和选课数量(包括没有选课的学生)select students.sno,students.sname, COUNT(cno)from SC,Students where sc.sno=students.sno______ group by students.sno,students.sname______

使用jxgl数据库,查询一共有多少门课被学生选修了,多人选修同一门课算一门课,显示课程数。select count(cno)______ from sc

使用jxgl数据库,定义视图v2 ,显示生源地为宁波的所有学生的学号、姓名、年龄,要求对视图数据的更改必须满足视图的定义。create view v2 asselect sno,sname, YEAR(now())-YEAR(bday) as agefrom Studentswhere bplace=宁波______ with option______

答案查题题库