How to write a query with a right outer join in oracle?
Answer / Mukesh Kumar Dixit
SELECT table1.*, table2.(column_from_table2) FROM table1 RIGHT OUTER JOIN table2 ON table1.key = table2.key WHERE table2.key IS NULL;
| Is This Answer Correct ? | 0 Yes | 0 No |
Tell me New Feature of Oracle 10g?
What would you use to improve performance on an insert statement that places millions of rows into that table?
What is data block in Oracle?
Can cursor variables be stored in PL/SQL tables.If yes how. If not why?
Is there an oracle sql query that aggregates multiple rows into one row?
How can we manage the gap in a primary key column created by a sequence? Ex:a company has empno as primary key generated by a sequence and some employees leaves in between.What is the best way to manage this gap?
How to run the anonymous block again?
When do you get a .pll extension in oracle?
How to start your 10g xe server?
Two triggers one is before insert and other is after insert are firing on a table.If 10 times you insert in a table.Then how many times before trigger and how many types after trigger will fire in pl/sql.
How to create index-by table in oracle?
What happens to the data files if a tablespace is dropped?