连接查询
注意区别以下三种情况
原文链接:https://www.f2er.com/postgresql/197246.html1.SELECT*2.FROMweather,cities3.WHEREcity=name;1.
SELECT
*
1.SELECT*2.FROMweather3.LEFTOUTERJOINcitiesON(weather.city=cities.name);1.
SELECT
W1.city,W1.temp_lo
AS
low,W1.temp_hi
AS
high,
2.
W2.city,W2.temp_lo
AS
low,W2.temp_hi
AS
high
3.
FROM
weatherW1,weatherW2
4.
WHERE
W1.temp_lo<W2.temp_lo
5.
AND
W1.temp_hi>W2.temp_hi;
相反,HAVING 子句总是包含聚集函数。当然,你可以写不使用聚集的 HAVING 子句,但这样做没什么好处,
1.SELECTW1.city,W1.temp_loASlow,W1.temp_hiAShigh,2.W2.city,W2.temp_loASlow,W2.temp_hiAShigh3.FROMweatherW1,weatherW24.WHEREW1.temp_lo<W2.temp_lo5.ANDW1.temp_hi>W2.temp_hi;聚集函数使用下WHERE 和 HAVING 的基本区别因为同样的条件可以更有效地用于 WHERE 阶段。
WHERE 在分组和聚集计算之前选取输入行(它控制哪些行进入聚集计算),而 HAVING 在分组和聚集之后选取输出行。因此,WHERE 子句不能包含聚集函数;因为试图用聚集函数判断那些行将要输入给聚集运算是没有意义的。相反,HAVING 子句总是包含聚集函数。当然,你可以写不使用聚集的 HAVING 子句,但这样做没什么好处,因为同样的条件可以更有效地用于 WHERE 阶段。