Possible duplicate:
Oracle: What does (+) in a WHERE clause?
Consider the simplified SQL query below in an Oracle database environment (although I'm not sure if it depends on Oracle):
SELECT t0.foo, t1.bar FROM FIRST_TABLE t0, SECOND_TABLE t1 WHERE t0.ID (+) = t1.ID;
What is the (+) notation for a WHERE ? I apologize if this is an uninformed question about newbies, but it was extremely difficult to find on Google or StackOverflow ... because even when using quotes, search engines see the β+β sign and seem to want to treat it as something like a logical directive .
sql oracle
Steve Perkins Nov 18 '10 at 16:41 2010-11-18 16:41
source share