Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Re: SQL JOINs vs WHERE statements

by bean (Monk)
on Aug 18, 2003 at 19:02 UTC ( [id://284678]=note: print w/replies, xml ) Need Help??


in reply to Re: SQL JOINs vs WHERE statements
in thread SQL JOINs vs WHERE statements

There is nothing silly or unusual about the left outer join in Oracle 8.

Left outer join:
table1.column1 (+) = table2.column2
Right outer join:
table1.column1 = table2.column2 (+)
Full outer join:
table1.column1 (+) = table2.column2 (+)
Inner join:
table1.column1 = table2.column2
It isn't the *= syntax, but it is consistent and logical.

Replies are listed 'Best First'.
Re: Re: Re: SQL JOINs vs WHERE statements
by glwtta (Hermit) on Aug 18, 2003 at 20:48 UTC
    Yeah, from what I remember I didn't know about the (+) syntax at the time, and what someone at work showed me was a UNION of an inner join with the values of a "null join" which would give you the rows that didn't join with the second table. Still weird, but not Oracle's fault :) In any case, I haven't done much with Oracle 8 and still know little about it.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://284678]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (2)
As of 2024-04-26 03:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found