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

Respected sir, Please send me technical questions related to oracle apps..

1577


What is oracle update statement with inner join ?

784


1) Does oracle have any table which contain all the exceptions and it's code internally?

1510


How to check the oracle tns settings?

791


Please explain me all types of Data models. Also give me the details if each model can have other name.for example:schematic data model is also known as conceptual data model and entity relation data model.

2079


What is the difference between translate and replace in oracle?

911


Can sub procedure/function be called recursively?

750


What is an oracle data file?

832


What to do if the startbd.bat failed to start the xe instance?

834


What is an oracle database table?

772


What is oracle server autotrace in oracle?

858


Explain the difference between sap and oracle?

775


Explain the use of Merge statement in oracle 11g

791


What is dynamic proxy?

772


What is a dead lock in oracle?

817