Answer Posted / senthil kumar
6. full outer join : ALL UNMATCHED DATA FROM BOTH TABLES
SELECT * FROM TABLE A FULL OUTER JOIN TABLE B ON (A.ID= B.ID)
Ex:
TABLE A
NO NAME 1 X
2 Y
5 Z
TABLE B
NO NAME 1 XX
2 YY
3 ZZ
4 AA
OUTPUT:
NO NAME NO NAME
1 X 1 XX
2 Y 2 YY
3 ZZ
4 AA
5 Z
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What pl/sql package consists of?
Is it important to partition hard disk?
What is a file delimiter?
What is the purpose of cursors in pl/sql?
Which command is used to call a stored procedure?
What is the location of pre_defined_functions.
How do you create a unique index?
How can we connect an Android App to an Oracle database and use the PL/SQL procedural code?
What is tuple in sql?
what is a foreign key ? : Sql dba
how many sql ddl commands are supported by 'mysql'? : Sql dba
What is rollback?
What are the different types of dbms?
What language is oracle sql developer?
How to process query result in pl/sql?