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 happens if variable names collide with table/column names?
Can group functions be used in the order by clause in oracle?
what is reindexing?
How many types of segments in Oracle?
How do you find current date and time in oracle?
Can we protect our pl/sql source code?
How do I call oracle stored procedures that take no parameters?
why dont we assign not null constraint as table level constraint.
How to rename a column in an existing table?
How to create an oracle testing table?
How to define an external table with a text file?
Can sub procedure/function be called recursively?
Why does for update in oracle 8 cause an ora-01002 error?
What are the differences between date and timestamp in oracle?
What is the purpose of tables, private synonyms and public synonyms in Oracle?