About 276,000 results
Open links in new tab
  1. sql - Oracle " (+)" Operator - Stack Overflow

    Oct 26, 2010 · 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 …

  2. sql - Left Outer Join using + sign in Oracle 11g - Stack Overflow

    Can any one tell me whether below 2 queries are an example of Left Outer Join or Right Outer Join?? Table Part: Name Null? Type PART_ID NOT NULL VARCHAR2(4) SUPPLIER_ID ...

  3. sql - How to perform FULL OUTER JOIN in ORACLE using '+' …

    May 8, 2012 · Instead of using keywords like FULL OUTER JOIN or FULL JOIN, how can I perform full outer join using 'where' clause with the help of '+' operator?!

  4. sql - Oracle (+) outer join and constant values - Stack Overflow

    3 .The (+) operator tells Oracle that a predicate is part of an outer join rather than a filter predicate that can be applied after the join. Using the SQL 99 outer join syntax, the first query is …

  5. sql - How to use oracle outer join with a filter where clause - Stack ...

    Aug 3, 2016 · A LEFT OUTER JOIN is one of the JOIN operations that allow you to specify a join clause. It preserves the unmatched rows from the first (left) table, joining them with a NULL …

  6. sql - Oracle using (+) for left outer join - Stack Overflow

    Oracle says this and Oracle recommends that. Did you ever look at the Explain Plan of an outer join query, to see that Oracle even today rewrites the ANSI syntax to its proprietary (+) notation?

  7. sql - Oracle Joins - Comparison between conventional syntax VS …

    Sep 19, 2013 · In 11g, based on the explain plan and a 10053 trace, Oracle will keep the full outer join syntax but still convert other outer joins to (+). Which leads to some ugly-looking internal …

  8. oracle database - SQL "Join" on null values - Stack Overflow

    How can I do better? This is on Oracle if it matters, and the context is an application in which a batch of user-uploaded data has to be compared to a batch of existing data to see if any rows …

  9. What does a (+) sign mean in an Oracle SQL WHERE clause?

    Jan 29, 2014 · Interesting that this has been accepted for so long. According to Oracle's documentation linked to in the answer, "To write a query that performs an outer join of tables A …

  10. sql - Difference between Oracle's plus (+) notation and ansi JOIN ...

    Jul 28, 2009 · 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?