第五章作业 1 、查询学生选课表中的全部数据 select*fromsc 2 、查询计算机系学生的姓名、年龄 selectsname,sagefromstudent wheresdept= 计算机系 3 、查询成绩在70-80 的学生的学号、课程号和成绩 select*fromscwheregradebetween70to80 4 、查询计算机系年龄在18-20 的男生的姓名、年龄 selectsname,sagefromstudent Wheresdept= 计算机系andsagebetween18to 20andssex= 男 5 、查询“C01” 课程的最高成绩 Selectmax(grade)fromscwherecno=c016 、查询计算机系学生的最大年龄和最小年龄 selectmax(sage),min(sage)fromstudent wheresdept= 计算机系 7 、统计每个系的学生人数 selectsdept,count(*)fromstudentgroupbysdept 8 、统计每门课程的选课人数和考试最高分 selectcno,count(*),max(