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


Please Help Members By Posting Answers For Below Questions

How to rollback the current transaction in oracle?

766


How to use like conditions in oracle?

778


What is the difference between alert log file and tarce file ?

1848


Define the SGA and: How you would configure SGA for a mid-sized OLTP environment? What is involved in tuning the SGA?

2050


What are the restrictions on external table columns?

774


How to use select statement to count the number of rows in oracle?

755


Explain a segment?

809


How to drop a tablespace?

744


Explain what are the type of synonyms?

821


In Oracle Clinical 4.5.0, can the VIEW_TEMPLATE_ID column in DATA_EXTRACT_VIEWS table contain NULL value?

2113


Explain the use of consistent option in exp command.

725


What are the execution control statements?

818


What is oracle rowcount?

818


Explain a synonym?

779


Please explain drop constraint oracle?

809