Re: NEWBIE: How do I get the oldest date contained in 3 tables - Mailing list pgsql-general

From Lorenzo Thurman
Subject Re: NEWBIE: How do I get the oldest date contained in 3 tables
Date
Msg-id krnqe4-sm3.ln1@Hedley.internal.thethurmans.com
Whole thread Raw
In response to Re: NEWBIE: How do I get the oldest date contained in 3 tables  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: NEWBIE: How do I get the oldest date contained in 3 tables  ("John D. Burger" <john@mitre.org>)
List pgsql-general
Tom Lane wrote:
> "Dann Corbit" <DCorbit@connx.com> writes:
>>> owner@postgresql.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?
>
>             regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: Have you checked our extensive FAQ?
>
>                http://www.postgresql.org/docs/faq
>
Um, all of them?

pgsql-general by date:

Previous
From: "Marc"
Date:
Subject: Tomcat question/problem
Next
From: William Garrison
Date:
Subject: Do I need serializable for this query?