作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我们使用 HAVING
的 SQL 语句示例:
select column1 from table1
where condition1
having condition2;
select column1 from table1
where condition1 AND condition2;
最佳答案
在你的例子中,他们应该做同样的事情。但是WHERE
得到处理 之前 任何 GROUP BY
,因此它无法访问聚合值(即 Min()
、 Max()
等函数的结果)。 HAVING
得到处理 后 GROUP BY
因此可用于将结果集限制为仅具有与某个谓词匹配的聚合值的结果集。
关于SQL:使用 WHERE AND 而不是 HAVING,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3159739/
我是一名优秀的程序员,十分优秀!