Search Postgresql Archives

Re: Sorting with DISTINCT ON

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Nico Grubert <nicogrubert@xxxxxxxxx> writes:

> My first try was this SQL query:
>
>   SELECT DISTINCT ON (path) path, comment_id, created, title
>     FROM bewertungen.tblcomments
>
> This does not allow me to append "ORDER BY created" since I can only sort on
> path because of  DISTINCT ON (path).

It does allow you to sort on both columns.  

   SELECT DISTINCT ON (path) path, comment_id, created, title
     FROM bewertungen.tblcomments ORDER BY path, created

Maybe you need a more complex query to get what you want (and use
max(created)...). 

-- 
Jorge Godoy      <jgodoy@xxxxxxxxx>


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux