From: | Bruno Wolff III <bruno(at)wolff(dot)to> |
---|---|
To: | markMLl(dot)pgsql-general(at)telemetry(dot)co(dot)uk |
Cc: | pgsql-general(at)PostgreSQL(dot)org |
Subject: | Re: Nulls in timestamps |
Date: | 2005-07-15 11:59:24 |
Message-ID: | 20050715115924.GB11384@wolff.to |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Wed, Jul 13, 2005 at 18:15:12 +0000,
markMLl(dot)pgsql-general(at)telemetry(dot)co(dot)uk wrote:
> Many thanks Tom. Inconvenient from the point of view of the application but
> still useful information.
>
> The situation is that I've got a query with numerous subselects, each of which
> has to return exactly one row so I was doing a union with a nulled record then
> selecting the most recent: obviously I need to see bona-fide data if it's there.
you can order by datecol is null, datecol desc to get the most recent
non null date. For example:
area=> select day from (select 'today'::date as day union select 'tomorrow'::date as day union select null as day) as un order by day is null, day desc;
day
------------
2005-07-16
2005-07-15
(3 rows)
From | Date | Subject | |
---|---|---|---|
Next Message | Andrus | 2005-07-15 12:03:46 | uncompressing pgAdmin backup file in windows |
Previous Message | Bruno Wolff III | 2005-07-15 11:50:52 | Re: re my previous e-mail client-server example |