Y
Hacker News
new
|
ask
|
show
|
jobs
by
atarashi
3046 days ago
The HAVING clause is evaluated before the SELECT so you have to specify the full clause `having sum(weight) > 12` and not just the alias. Most SQL engines are probably smart enough to not actually recalculate everything.
1 comments
cema
3046 days ago
Yes, SQL engines tend to be much smarter than the SQL languages as such.
link