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 examples?
|
|
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 examples?
|
||||||||
|
|
|
No, not in the same query. The
If neither of those are possible to use for some odd reason, you have to make the query a subquery so that you can put the
|
||
|
|
|
|
A HAVING clause is just a WHERE clause after a GROUP BY. Why not put your WHERE conditions in the HAVING clause? |
||||||
|
|
|
If it's a trick question, it's possible if the WHERE and the HAVING are not at the same level, as you mentionned, with subquery. I guess something like that would work
p.s.: why were you asking? Do you have a specific problem? p.s.s: OK silly me, I missed the "interview*" tag... |
|||
|
|
|
|
From SELECT help
So, no you can not. |
||
|
|
|
|
Within the same scope, answer is no. If subqueries is allowed then you can avoid using I think
I strongly suspect the answer to Darwen's question is no. |
||
|
|