Re: retrieving primary key for row with MIN function - Mailing list pgsql-novice

From Jasen Betts
Subject Re: retrieving primary key for row with MIN function
Date
Msg-id gtc4mb$4o1$7@reversiblemaps.ath.cx
Whole thread Raw
In response to retrieving primary key for row with MIN function  (Marcin Krol <mrkafk@gmail.com>)
List pgsql-novice
On 2009-04-29, Marcin Krol <mrkafk@gmail.com> wrote:
> Hello everyone,
>
> I need to retrieve PK (r.id in the query) for row with
> MIN(r.start_date), but with a twist: I need to select only one record,
> the one with minimum date.

use LIMIT.

eg:

SELECT
   h.id  AS host_id,
   r.start_date AS reservation_start_date,
   r.id AS reservation_id
FROM hosts h
LEFT OUTER JOIN reservation_hosts rh ON rh.host_id = h.id
LEFT OUTER JOIN reservation r ON r.id = rh.reservation_id AND
(r.start_date, r.end_date) OVERLAPS ('2009-04-29'::date,'2010-04-29'::date)
ORDER BY reservation_start_date ASC
LIMIT 1



pgsql-novice by date:

Previous
From: Rodrigo E. De León Plicet
Date:
Subject: Re: Funny foreign keys
Next
From: daq
Date:
Subject: Re: retrieving primary key for row with MIN function