Re: NEWBIE: How do I get the oldest date contained in 3 tables

From: "Merlin Moncure" <mmoncure(at)gmail(dot)com>
To: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: "Dann Corbit" <DCorbit(at)connx(dot)com>, "Lorenzo Thurman" <lorenzo(at)diespammerhethurmans(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: NEWBIE: How do I get the oldest date contained in 3 tables
Date: 2007-04-09 21:20:31
Message-ID: b42b73150704091420h192d57fk419025930cf9631b@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 4/9/07, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> "Dann Corbit" <DCorbit(at)connx(dot)com> writes:
> >> owner(at)postgresql(dot)org] On Behalf Of Lorenzo Thurman
> >> I have three tables using date fields. I want to retrieve the oldest
> >> date contained in the tables. Can someone show me an example of a query
> >> that would do that?
>
> > Just do a union and return the min
>
> That's probably not enough detail for a newbie ...
>
> SELECT min(x) FROM
> (
> SELECT min(datecol1) AS x FROM table1
> UNION ALL
> SELECT min(datecol2) AS x FROM table2
> UNION ALL
> SELECT min(datecol3) AS x FROM table3
> ) ss;
>
> Exercise for newbie: which of the AS clauses are redundant?

they are all unnecessary :D

select least
(
(SELECT min(datecol1) FROM table1),
(SELECT min(datecol2) FROM table2),
(SELECT min(datecol3) FROM table3)
);

merlin

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Lorenzo Thurman 2007-04-09 21:30:07 Re: NEWBIE: How do I get the oldest date contained in 3 tables
Previous Message Leon Mergen 2007-04-09 21:00:59 INSERT..RETURNING on a partitioned table