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

Home -> Community -> Usenet -> c.d.o.server -> Re. Is it possible to have an outer join with the Group By in the same query?

Re. Is it possible to have an outer join with the Group By in the same query?

From: SaraN <Vishmayaa_at_yahoo.nospam.com>
Date: Fri, 02 Mar 2001 13:35:44 -0500
Message-ID: <3A9FE800.946364D6@yahoo.nospam.com>

Did you try nested select?

select symbol, max(transadate) from (
select s.symbol symbol, a.transDate transdate from symbols s, account a
where s.symbol=a.symbol (+))
group by symbol

I have done this a few times and am sure this will work.

SaraN
vishmayaa_at_yahoo.com Received on Fri Mar 02 2001 - 12:35:44 CST

Original text of this message

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