MySQL中having的用法

MySQL中having的用法

mysql中,当我们用到聚合函数,如sum,count后,又需要筛选条件时,having就派上用场了,因为WHERE是在聚合前筛选记录的,having和group by是组合着用的
MySQL中having的用法_第1张图片

先查询分类cid下 id的统计数目

select cid,count(id) nums from table_name group by cid 结果如下:

MySQL中having的用法_第2张图片

然后可以用having对统计的数据进一步筛选,比如nums大于2的数

select cid,count(id) nums from xzyd_question group by cid HAVING nums>2

MySQL中having的用法_第3张图片
注意 having后的判断字段必须是聚合函数返回的结果

你可能感兴趣的:(MySQL,java,mysql)