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: inner join in Oracle

Re: inner join in Oracle

From: Arjan van Bentem <avbentem_at_DONT-YOU-DAREdds.nl>
Date: Wed, 16 Sep 1998 20:46:07 +0200
Message-ID: <6tp0uq$snk$1@pascal.a2000.nl>


> col1 (+) = col2

To complete the story: above is a left join. An inner join would not have the (+), e.g.:

    from tableA a, tableB b
    where a.col1 = b.col2;

Arjan.

>> I created an inner join SQL statement in access but I noticed that the
>> statement will not work in oracle. Is there a particular way oracle
>> does this type of a join? I am going to explore other ways around it
>> for now, since there may be numerous ways of writing the same query.
Received on Wed Sep 16 1998 - 13:46:07 CDT

Original text of this message

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