Without giving condition how to retrieve the unmatched
records from table.
Answer Posted / sudipta santra
SELECT * FROM (
(
SELECT * FROM T1
UNION
SELECT * FROM T2
)
MINUS
(
SELECT * FROM T1
INTERSECT
SELECT * FROM T2
) ) ;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are the numeric comparison operations?
Explain the use of Merge statement in oracle 11g
Difference between inner join vs where ?
How to fetch the row which has the max value for a column?
What is the best way to do multi-row insert in oracle?
How to convert dates to characters in oracle?
How many types of synonyms in Oracle?
Please explain joins in oracle?
What is meant by raw datatype?
how the Oracle Prepares the Execution Plan and how it chooses the Optimal one?
What is a nested table and how is it different from a normal table?
How to rollback the current transaction in oracle?
What are the ways tablespaces can be managed and how do they differ?
What suggestions do you have to reduce the network traffic?
What is the simplest tool to run commands on oracle servers?