Re: max timestamp - Mailing list pgsql-sql

From Bruno Wolff III
Subject Re: max timestamp
Date
Msg-id 20040215195152.GA570@wolff.to
Whole thread Raw
In response to max timestamp  (stermic@gw.co.jackson.mo.us (Michael Sterling))
List 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 by date:

Previous
From: Tomasz Myrta
Date:
Subject: Re: writing a dynamic sql
Next
From: Stephan Szabo
Date:
Subject: Re: Function