how to find find & delete duplicate rows from two different
tables?

Answer Posted / paks

using rownum .


Select * from
(Select name,id, Row_number () over (partition by name order by id desc) rn from tblname)
Where rn=1;

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do I know if oracle client is installed on windows?

504


How to create an oracle database manually?

581


How to enter a new row into a table interactively?

561


What is meant by an index?

637


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

542






What is oracle used for?

543


How to declare a local variable?

608


Database crashes. Corruption is found scattered among the file system neither of your doing nor of Oracles. What database recovery options are available? Database is in archive log mode.

1553


How to get execution statistics reports on query statements?

586


How to define a data field as not null?

640


How to speed up webrick?

614


How can we view last record added to a table?

618


How to commit the current transaction in oracle?

583


What are the oracle differences between nvl and coalesce

526


How to pass a parameter to a cursor in oracle?

610