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


Please Help Members By Posting Answers For Below Questions

What are the differences between primary key and unique key?

528


What is the difference between a primary key & a unique key?

599


what is the scripts in data base?

1613


What are nested tables?

685


For a field in a repeating frame, can the source come from the column which does not exist in the data group which forms the base for the frame ?

1567






How to update values in a table in oracle?

590


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

1861


Why is oracle database so popular?

576


How to see free space of each tablespace?

600


What is sequence?

633


How to convert a date to char in oracle? Give one example.

601


How to add another datafile to a tablespace?

588


How to connect to the server with user account: sys?

572


How do I decide when to use right joins/left joins or inner joins or how to determine which table is on which side?

558


Is primary key indexed by default in oracle?

564