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 / sayalibsl
select e2.empno, e2.ename from A e1, B e2
where e1.empno!=e2.empno;
| Is This Answer Correct ? | 15 Yes | 5 No |
Post New Answer View All Answers
What is the difference between sql and isql*plus?
What is left inner join in sql?
Why do we go for stored procedures?
Explain raise_application_error.
What is primary key in db?
what are the other commands to know the structure of table using mysql commands except explain command? : Sql dba
What is a pdo connection?
What are all the ddl commands?
What is the use of triggers?
What packages are available to pl/sql developers?
what is a field in a database ? : Sql dba
What is the importance of sqlcode and sqlerrm?
Is sql open source?
What is sql catalog?
Define a temp table?