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 / b
select * from B
minus
select * from A;
| Is This Answer Correct ? | 12 Yes | 3 No |
Post New Answer View All Answers
What are the different sql languages?
explain the difference between delete , truncate and drop commands? : Sql dba
What is string join?
Is stored procedure faster than query?
Why do we create stored procedures & functions in pl/sql and how are they different?
Explain the uses of a database trigger?
What is user in sql?
Define concurrency control. : Transact sql
Advantages and disadvantages of stored procedure?
Explain the order of sql statement execution?
how to write date and time literals? : Sql dba
What is query execution plan in sql?
How many types of indexes are there in sql?
Explain the purpose of %type and %rowtype data types with the example?
what is a primary key? : Sql dba