What is the difference between Outer join and Full outer join?
Answer Posted / syam kumar m
Left Outer Join---For retreiving all the columns from the
first table irrespective of the column match.
Right Outer Join---For retreiving all the columns from the
second table irrespective of the column match
Full Outer Join---it retrieves the matched data from the
two tables and affter shows remaining rows in the result
set like below example.
col_one col_two col_one col_two
---------------- ---------------------
1 a 2 B
2 b 3 C
3 c 4 D
full outer join
---------------
col_one col_two col_one col_two
2 b 2 B
3 c 3 C
- - 4 D
1 a - -
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is open database communication (odbc) in oracle?
What is the sql query to concatenate column values from multiple rows in oracle?
candidate key is subset of super key but not vice-verse explain
How to get execution path reports on query statements?
How to start a specific oracle instance?
what is insert all statement in sql
What is varray?
How to define an external table with a text file?
What is the difference between I and G in Oracle?
Is oracle the best database?
What is transport network substrate (tns) in oracle?
Explain the use of file option in exp command.
How to revoke create session privilege from a user in oracle?
what is reindexing?
How to get last row id?