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 is difference between sql and mysql?
Can we insert data in view?
how to implement one-to-one, one-to-many and many-to-many relationships while designing tables? : Sql dba
Explain what is a column in a table?
Why plvtab is considered as the easiest way to access the pl/sql table?
What are the disadvantages of file system?
What is user defined functions?
What is the purpose of normalization?
Explain the uses of a database trigger?
What is sap sql?
Why is %isopen always false for an implicit cursor?
What are different clauses used in sql?
What are the different types of database management systems?
what are the differences between public, private, protected, static, transient, final and volatile? : Sql dba
What is schema in sql?