使用jxgl数据库,修改学号为“1411201”的同学的课程号“0000027”的成绩为80,绩点为2.5update SCset grade=80 and point=2.5______ where sno='1411201' and cno=0000027______
查看答案
使用jxgl数据库,查询所有教师教学的课程数select count(*)______ from teaching______
使用jxgl数据库,新建班级为“17物流1”的学生视图v1create view v1______ select * from students______ where class='17物流1'
使用jxgl数据库,查询不重复学生班级的名称select distant class from students______
使用jxgl数据库,统计教师中所有“副教授”的人数select COUNT('副教授')______ from teachers______