About 50 results
Open links in new tab
  1. sql - Joins in oracle - Stack Overflow

    Jun 6, 2019 · The Oracle database still uses the old outer join syntax quite a bit internally, and it shows up in the filter list of EXPLAIN PLAN sometimes where least expected.

  2. sql - Update statement with inner join on Oracle - Stack Overflow

    Mar 15, 2010 · I have a query which works fine in MySQL, but when I run it on Oracle I get the following error: SQL Error: ORA-00933: SQL command not properly ended 00933. 00000 - "SQL command …

  3. sql - How to update with inner join in Oracle - Stack Overflow

    May 26, 2017 · Could someone please verify whether inner join is valid with UPDATE statment in PL SQL? e.g. Update table t set t.value='value' from tableb b inner join on t.id=b.id inner join tablec c on …

  4. 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 subject to the …

  5. Oracle SQL Case statement in JOIN ON condition - Stack Overflow

    Aug 24, 2023 · The assumption is that you want to use both table_a_fk_id & field_1 when field_1 is available, but to still join via table_a_fk_id alone when field_1 is null. As an aside a "case statement" …

  6. SQL Inner join on select statements - Stack Overflow

    Nov 12, 2012 · select * from (select* from bars where rownum <= 10 )as tab1 inner join (select * from bars where rownum <= 10 )as tab2 on tab1.close=tab2.close and I get the following error: ORA …

  7. Oracle SQL Conditional Outer Join using case statement

    Apr 2, 2013 · Oracle SQL Conditional Outer Join using case statement Asked 12 years, 10 months ago Modified 12 years, 10 months ago Viewed 19k times

  8. Joining Tables in Oracle SQL Developer - Stack Overflow

    Jun 21, 2013 · I have four tables that I want to join and display the output all together. I'm not sure how the syntax works for Oracle SQL Developer. I know this is an easy question for a programmer and I …

  9. 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 row in the shape …

  10. sql - Oracle INNER JOIN ON CASE WHEN condition - Stack Overflow

    Aug 26, 2020 · I have two subqueries I need to (inner) join on a column (&quot;id&quot;). Unfortunately, some of the values I am joining on have been altered somewhere before, so the ON condition of the …