Tagged Questions
2
votes
4answers
234 views
Difference between WHERE and HAVING in SQL [closed]
Possible Duplicate:
SQL: What's the difference between HAVING and WHERE?
I have seen various discussions on WHERE and HAVING. I still have a question: is HAVING used only when ...
2
votes
5answers
443 views
SQL Question: It's possibile to have a WHERE clause after a HAVING clause?
So...
It is possibile to use a WHERE clause after a HAVING clause?
The first thing that comes to my mind is sub queries, but I'm not sure.
P.S. If the answer is affirmative, could you give some ...
0
votes
4answers
1k views
How to use an aliased column in a MySQL WHERE clause?
I have a MySQL query like this:
SELECT *, SUM(...some SQL removed for brevety) AS Occurrences FROM some_table AS q
WHERE criterion="value" GROUP BY q.P_id ORDER BY Occurrences DESC LIMIT 10;
I want ...