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
Explain the use of inctype option in exp command.
What is the difference between substr & instr functions?
How will you write a query to get a 5th rank student from a table student_report?
What is Virtual Private Database in Oracle?
How to use null as conditions in oracle?
Difference between varchar and varchar2 data types?
How to loop through data rows in the implicit cursor?
How to commit the current transaction in oracle?
How to define an anonymous block?
how can we store any pdf file in oracle
What are the varoius components of physical database structure of oracle database?
what is the difference between substr and instr function in oracle?
How to use subqueries in the from clause in oracle?
6. Display the client name and order date for all orders using the traditional method.
If a parameter is used in a query without being previously defined, what diff. exist betw. report 2.0 and 2.5 when the query is applied ?