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 information is needed to connect sql*plus an oracle server?
What action do you have to perform before retrieving data from the next result set of a stored procedure ?
What is cross join sql?
Do foreign keys improve performance?
What is java sql connection?
Is hadoop a nosql?
What is pl sql block in dbms?
Is sql better than access?
What are the methods of filing?
What is a sql driver?
How do you update a sql procedure?
What is the limitation on the block size of pl/sql?
What is java sql package?
Why we use stored procedure instead of query?
What is meaning of <> in sql?