gpt4 book ai didi

SQL:使用 WHERE AND 而不是 HAVING

转载 作者:行者123 更新时间:2023-12-04 02:32:12 24 4
gpt4 key购买 nike

这是我们使用 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com