郭广豪2021011123
1、统计学生表,统计共有多少个学生。
Select count (*) as 学生数量
from Student
2、统计学生表,统计年龄大于20岁的学生有多少个。
Select count(*) as 学生数量
from Student
where sage>20
3、统计学生表,统计出生年份在1999年至2002年的学生人数。
select count(*) as 学生数量
from Student
where 2020-sage between 1999 and 2002
4、统计学生选修表,统计学号为"201215122"的学生的平均成绩。
Select avg(grade) as 平均成绩
from sc
where sno='201215122'
5、统计学生选修表,统计学号为"201215121"的学生的总成绩。
select sum(grade) as 总成绩
from sc
where sno ='201215121'
6、统计学生选修表,查询课程号为”1”的课程的最高成绩。
select max(grade) as 最高成绩
from Sc
where cno='1'
7、统计学生表,查询所有学生中最早的出生年份。
select 2020-max(sage)
from Student