HAVING worked OK thus .
-
> What would this mean? The WHERE clause is what determines what rows
> will be used in the GROUP BY functions, e.g. MIN(). How do you know
> what rows to use when you need to know what rows to use before you
> can figure out the criteria for what rows to use?
> Tryin
Julio Faerman writes:
> Hi ... I am need the following query to work :
> SELECT
> min(my_colum) as MINIMAL_VALUE
> WHERE
> MINIMAL_VALUE > 10
>
> The query is not EXACTLY as this one, but i think it is enough to get you
> the idea of my problem...
What would this mean? The WHERE clause
Try to use HAVING instead of WHERE. I hope that will help.
Julio Faerman wrote:
JF: Hi ... I am need the following query to work :
JF: SELECT
JF: min(my_colum) as MINIMAL_VALUE
JF: WHERE
JF: MINIMAL_VALUE > 10
JF:
JF: The query is not EXACTLY as this one,