What's the difference between using oracle's plus notation (+) over the ansi standard join notation?
Is there a difference in performance?
Is the plus notation deprecated?
|
What's the difference between using oracle's plus notation Is there a difference in performance? Is the plus notation deprecated? |
|||||
|
|
Afaik, the + notation is only present for backwards compatibility because Oracle debuted it before the ANSI standard for joins was put in place. It's specific to Oracle and you should avoid using it in new code when there's an equivalent standards-compliant version available. Edit: It seems there are differences between the two, and the + notation has restrictions that the ANSI join syntax does not have. Oracle themselves recommend that you not use the + notation. Full description here in the Oracle® Database SQL Language Reference 11g Release 1 (11.1): Oracle recommends that you use the FROM clause OUTER JOIN syntax rather than the Oracle join operator. Outer join queries that use the Oracle join operator (+) are subject to the following rules and restrictions, which do not apply to the FROM clause OUTER JOIN syntax:
If the WHERE clause contains a condition that compares a column from table B with a constant, then the (+) operator must be applied to the column so that Oracle returns the rows from table A for which it has generated nulls for this column. Otherwise Oracle returns only the results of a simple join. In a query that performs outer joins of more than two pairs of tables, a single table can be the null-generated table for only one other table. For this reason, you cannot apply the (+) operator to columns of B in the join condition for A and B and the join condition for B and C. Refer to SELECT for the syntax for an outer join. |
||||
|
|
|
The notation is still supported as of Oracle 10 (and I believe 11). It's use is considered "old fashioned", and also is not as database portable as the ANSI JOIN syntax. It's also considered much less readable, although if you come from the + background getting used to ANSI JOIN can take a little time. The important thing to know before hurling brickbats at Oracle is that they developed their + syntax before the ANSI committee had completed the definitions for the joins. There is no performance difference; they are expressing the same thing. Edit: By "not as portable" I should have said "only supported in Oracle SQL" |
|||||
|
|
I agree with Tony Miller's answer and would like to add that there are also a few things that you can NOT do with the (+) synthax:
|
|||
|
|
|
Oracle (+) notation is only used in Oracle, which is vendor specific. And,ANSI standared Join notation can be used in any RDBMS (like Sql Server,MySql etc.). Otherwise,there is no difference between Oracle (+) notation and ANSI standared Join notation. If you are using the ANSI standared Join notation in your Sql Query, you can use the same query in any RDBMS. And, if you are porting your database from Oracle to any Other RDBMS in that condition you have to use ANSI Syntax. |
|||
|
|