Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: MIN value from a column in 2 tables.

Re: MIN value from a column in 2 tables.

From: Mark <mark.harris.spam.begone_at_ukonline.co.uk.spam.begone>
Date: Tue, 21 Jan 2003 09:00:54 -0000
Message-ID: <3e2d0c47$0$2553$afc38c87@news.easynet.co.uk>


> select * from
> (
> select min(ID) as ID, 'table1' as this_table from table1
> union all
> select min(ID) as ID, 'table2' as this_table from table2
> )
> where ID =
> select min(ID) from (select * from table1 union select * from table2);

Thanks again - appreciated.

Mark Received on Tue Jan 21 2003 - 03:00:54 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US