Re: Problems with HAVING - Mailing list pgsql-sql

From Kaloyan Iliev Iliev
Subject Re: Problems with HAVING
Date
Msg-id 41E56ED5.8040005@faith.digsys.bg
Whole thread Raw
In response to Re: Problems with HAVING  (Sam Mason <sam@samason.me.uk>)
List pgsql-sql
Thanks for the replay first.

Yes I use "having" like I have written. I can't use your query because 
in subquery I must write again the whole WHERE clause.
But in the other mail in the tread there is the solution:)

Thanks again

Kaloyan

Sam Mason wrote:

>Kaloyan Iliev Iliev wrote:
>  
>
>>select test.name
>>    
>>
>>from test
>  
>
>>where test.name = foo.name
>>having max(test.date)
>>    
>>
>
>I don't think you use the "having" clause like you've done there.  I
>think you want to be doing something more like:
>
>  select test.name
>  from test
>  where test.name = foo.name
>        and test.date in (select max(date) from test);
>
>But I may have misinterpreted you. . .
>
>Cheers,
>  Sam
>
>---------------------------(end of broadcast)---------------------------
>TIP 2: you can get off all lists at once with the unregister command
>    (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)
>
>
>  
>


pgsql-sql by date:

Previous
From: Kieran Ashley
Date:
Subject: Re: Problems with Quotes
Next
From: Kaloyan Iliev Iliev
Date:
Subject: Re: Problems with HAVING