Re: Help with simple query
От
Frank Bax
Тема
Re: Help with simple query
Дата
Msg-id
5.2.1.1.0.20051228193054.00a3e0a0@pop6.sympatico.ca
Список
Дерево обсуждения
Help with simple query Collin Peters <cadiolis@gmail.com>
Re: Help with simple query Tom Lane <tgl@sss.pgh.pa.us>
Re: Help with simple query PFC <lists@peufeu.com>
At 06:58 PM 12/28/05, Collin Peters wrote: >The following query will return me all the latest dates, but I can't >return the note_id or subject with it. >SELECT n.user_id, max(n.modified_date) >FROM notes n >GROUP by n.user_id >ORDER BY n.user_id > >Is this simpler than I am making it? No, it's not "simple". You need to join the results of above sql back to the original table (and relocate the order by clause): SELECT notes.note_id, notes.user_id, maxx.max_date, notes.note FROM (SELECT n.user_id, max(n.modified_date) AS max_date FROM notes n GROUP by n.user_id) AS maxx JOIN notes on notes.user_id = maxx.user_id AND notes.modified_date = maxx.max_date ORDER BY notes.user_id;
В списке pgsql-sql по дате отправления