vote up 0 vote down star

I've come across some SQL queries in Oracle that contain '(+)' and I have no idea what that means. Can someone explain its purpose or provide some examples of its use? Thanks

flag
dupe: stackoverflow.com/questions/430274/… – Alkini Feb 5 at 21:48
I actually tried searching for an answer before posting the question but didn't get any results when searching for '+' or '(+). It's weird that the question title in the URL seems to skip the (+) part as well. – Zabbala Feb 5 at 21:52

5 Answers

vote up 7 vote down check

It's Oracle's synonym for OUTER JOIN.

SELECT *
FROM a, b
WHERE b.id(+) = a.id

gives same result as

SELECT *
FROM a
     LEFT OUTER JOIN b
     ON b.id = a.id
link|flag
vote up 3 vote down

This is a duplicate of this post. You may find some more information there.

link|flag
vote up 2 vote down

IIRC, the + is used in older versions of Oracle to indicate an outer join in the pre-ANSI SQL join syntax. In other words:

select foo,bar
from a, b
where a.id = b.id+

is the equivalent of

select foo,bar
from a left outer join b
on a.id = b.id

NOTE: this may be backwards/slightly incorrect, as I've never used the pre-ANSI SQL syntax.

link|flag
It's used in newer versions of Oracle for those of us who hate ANSI sql. – Mark Brady Feb 5 at 21:26
@Mark Brady exactly. I feel it makes the intent of the query more clear. And I also hate ANSI SQL. – Camilo Díaz Feb 20 at 13:11
vote up 1 vote down

The + is a short cut for OUTER JOIN, depending on which side you put it on, it indicates a LEFT or RIGHT OUTER JOIN

Check the second entry in this forum post for some examples

link|flag
vote up 0 vote down

You use this to assure that the table you're joining doesn't reduce the amount of records returned. So it's handy when you're joining to a table that may not have a record for every key you're joining on.

For example, if you were joining a Customer and Purchase table:

To list of all customers and all their purchases, you want to do an outer join (+) on the Purchase table so customers that haven't purchased anything still show up in your report.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.