TABLE A TABLE B
EMPNO ENAME EMPNO ENAME
1 A 1 A
2 B 2 B
3 C 3 C
4 D 4 D
5 E 5 E
6 F
7 G
HOW TO GET THE UNMATCHED RECORDS IN SQL QUERY?
Answer Posted / baji
select * from a full outer join b on a.empno=b.empno
minus
select * from a inner join b on a. empno=b.empno;
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What does select top 1 do in sql?
Explain what is sql?
what's the difference between a primary key and a unique key? : Sql dba
What is the use of nvl function?
Explain the purpose of %type and %rowtype data types?
Whis is not false in primary key?
Does user triggers have entry for trigger with compilation errors?
What are the packages in pl sql?
Can a commit statement be executed as part of a trigger?
How do I save a stored procedure?
what is auto increment? : Sql dba
Are stored procedures compiled?
Which is faster subquery or join?
How do I remove all records from a table?
What is replication id?