T1: T2
A X--- this is updated record
B B

like this T1 table having no.of records updated. write a
query"retrive updated record from T2"

Answer Posted / suman rana

select * from T2
minus
select * from T1

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the use of online redo log files in oracle.

589


Will you be able to store pictures in the database?explain.

538


What is oracle latest version?

586


Is there any function in oracle similar like group_concat of mysql?

541


What is transaction control statement and how many types of transaction control statement in Oracle?

565






What are ddl statements in oracle?

592


How to drop an existing table in oracle?

594


What are the attributes of the cursor?

561


How to check the oracle tns settings?

575


src name sex a,male b,female c,male d,female Required output : male female a,b c,d tried pivot but was not successfull select * from src pivot (max(name) for sex in ('MALE','FEMALE'));

1181


How to delete a column in an existing table?

595


What are advantages of dateset in datastage?

1748


HI ALL, CAN ANYONE TELL ME THE DIFFERENCES BETWEEN SQL CLUSTURS,MSQL CLUSTERS,ORACLE CLUSTERS.......THANKS IN ADVANCE

1791


What happens to the current transaction if the session is ended?

527


I just want to maintain data like an employee can belongs to 3 or more departments . We can resolve this by using composite key but it avoids normalization rules. So Can anyone tell me how can I maintain data.

1704