> What that means is that neither the HAVING clause nor the targetlist
> can use any ungrouped columns except within aggregate calls; that is,
> 
>       select col from tab having 2>1

Informix:
select tabname from systables having 2 > 1;
   294: The column (tabname) must be in the GROUP BY list.
select tabname from systables group by 1 having 2 > 1;
   all rows returned
select tabname from systables group by 1 having 1 > 2;
   no rows found

Andreas

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
    (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])

Reply via email to