Loading

having筛选结果集

题目要求:让你输出有两科及其以上挂科(60分及格)的学生的名单?

name    subject    score

错误的做法:

mysql> select name, count(scoure<60) as gk from student group by name having gk >= 2;

为什么会是错的?

正确做法:

mysql> select name, sum(scoure<60) as gk from student group by name having gk >= 2;

为啥用count是错误的呢?因为count()计数是按行计数,他也不管这科挂没。而sum()是求和,当小于60时,就是+1,大于等于60时就是+0。

posted @ 2016-03-30 20:45  哈利路亚健儿奋起步伐  阅读(211)  评论(0编辑  收藏  举报