几个sql语句

小弟问我几个sql语句的问题:

有如下一张关系数据库表,表名为t:
xm    kc    fs
张三  语文  81
张三  数学  75
李四  语文  76
李四  数学  90
王五  语文  81
王五  数学  100
王五  英语  90

其中xm代表学生姓名,kc代表课程,fs表示分数

写出以下sql语句:
1)查询出每门课程都大于80分的学生姓名;
select xm from t where xm not in (select xm from t select xm  from t where fs < 80)

对于mysql数据库不支持子查询,大家想想有什么办法一sql可以解决这个问题呢?

2)查询出各门课程平均成绩高于85的学生姓名 
select xm  from t group by xm having avg(fs) > 80

 

//本人原创[email protected]转载请保留本信息
//http://blog.csdn.net/runnerrunning
//大家看了别忘了点右边的广告阿支持一下[email protected]

你可能感兴趣的:(database)