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 is mutating error in pl sql?
What is a schema sql?
how tsql statements can be written and submitted to the database engine? : Transact sql
Why sql query is slow?
What does truncate mean in sql?
Does google use sql?
What is basic structure of pl sql?
What is a natural join?
what are the different index configurations a table can have? : Sql dba
Can we use view in stored procedure?
What is AUTH_ID and AUTH_USER in pl/sql ?
How do I run a program in pl sql?
What is fmtonly in sql?
What is the difference between left join and right join?
What has stored procedures in sql and how we can use it?