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: newbie question about join

Re: newbie question about join

From: William Robertson <williamr2019_at_googlemail.com>
Date: 26 Feb 2007 05:08:53 -0800
Message-ID: <1172495333.480481.73870@p10g2000cwp.googlegroups.com>


On Feb 23, 11:10 pm, sean nakasone <seannakas..._at_yahoo.com> wrote:
> I'm a little bit confused, are these two select statements synonymous?
> The second one has a 'join...on', while the first one does not.
>
> select t.* from user_tab_cols t, user_all_tables a
> where t.table_name = a.table_name;
>
> select t.* from user_tab_cols t join user_all_tables a
> on (t.table_Name = a.table_name);

btw the syntax does not require brackets. Received on Mon Feb 26 2007 - 07:08:53 CST

Original text of this message

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