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
How to export data to a csv file?
What is a table index?
I am using an Oracle 8i Database my data contains Clob data. I am using toad version 7.6 i am able to get the data in toad but unable to extract the data in excel.when trying to extract the data into the excel the toad error says out of memory. Can any body please help me to extract the data through the same toad version. Thanks in advance
Database is hung. Old and new user connections alike hang on impact. What do you do? Your SYS SQLPLUS session IS able to connect.
Explain what are the uses of rollback segment?
definition of cluster and non-clustered index?
What is the purpose of tables, private synonyms and public synonyms in Oracle?
Explain the use of control file?
How to select all columns of all rows from a table in oracle?
Why cursor variables are easier to use than cursors?
How to delete a user account in oracle?
Is a rollback possible to any savepoint?
What is bulk collect in oracle?
Explain database link?
How to use fetch statement in a loop?