Why do you need to place columns you create yourself (for example select 1 as "number") after HAVING and not WHERE in MySQL?
And are there any downsides instead of doing WHERE 1 (writing the whole definition instead of a column name)?
|
Why do you need to place columns you create yourself (for example And are there any downsides instead of doing
| ||||
|
feedback
|
In general, you can reference aliases in neither of these clauses, but
If your calculated expression does not contain any aggregates, putting it into the | |||
|
feedback
|
|
The main difference is that The reason is the | ||||
|
feedback
|
|
For example, to check for duplicate names:
| ||||
feedback
|