Re: max timestamp

Поиск
Список
Период
Сортировка
От Bruno Wolff III
Тема Re: max timestamp
Дата
Msg-id 20040215195152.GA570@wolff.to
обсуждение исходный текст
Ответ на max timestamp  (stermic@gw.co.jackson.mo.us (Michael Sterling))
Список pgsql-sql
On Tue, Feb 10, 2004 at 10:14:04 -0800, Michael Sterling <stermic@gw.co.jackson.mo.us> wrote:
> i'm trying to get the max time stamp, from each day, of a range of
> dates, not just the max time stamp for the complete range dates but
> for each day.

SELECT DISTINCT ON can probably do what you want. Something like:
SELECT DISTINCT ON (timestamp::DATE) * FROM table ORDER BY timestamp DESC;

This won't produce any records for days where there are no timestamps.


В списке pgsql-sql по дате отправления:

Предыдущее
От: Tomasz Myrta
Дата:
Сообщение: Re: writing a dynamic sql
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: Function