使用jxgl数据库,查询不重复学生班级的名称select distant class from students______
查看答案
使用jxgl数据库,统计教师中所有“副教授”的人数select COUNT('副教授')______ from teachers______
使用jxgl数据库,查询最年轻的10位教师的信息select limit 10______ from teachers______
使用jxgl数据库,插入学生('1801101','刘备')insert into students______ values('1801101','刘备')
使用jxgl数据库,按课程号统计各门课程的平均分select cno,AVG(score)______ from SCgroup by sno______