Re: Just 1 in a series...

From: Patrick JACQUOT <patrick(dot)jacquot(at)anpe(dot)fr>
To: PostgreSQL - SQL <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Just 1 in a series...
Date: 2005-12-05 10:43:22
Message-ID: 439419CA.9060609@anpe.fr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Mark Fenbers wrote:

> What would have to be done if I needed a standard SQL solution?
> Mark
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Have you searched our list archives?
>
> http://archives.postgresql.org
>
Maybe you could t'ry something like :
Select whatever from yourtable a where not exists
(select * from yourtable b where b.id=a.id and b.timestamp > a.timestamp)

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Erik Sigra 2005-12-05 18:22:22 Database query: Notification about change?
Previous Message Joost Kraaijeveld 2005-12-04 22:36:50 Re: How to get a count() where column < ''?