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
can u plz provide me oca sql dumps please i need them
What are the uses of Database Trigger ?
Is it possible to set second Primary Key Constraint in a table in Oracle Database ?
Can select statements be used on views in oracle?
How to get maxsal , minsal, ename department wise in single query
What happens if recursive calls get out of control?
What is user managed backup in Oracle?
How to put more than 1000 values into an oracle in clause?
What is a lookup table in oracle?
How to connect to the server with user account: sys?
Explain what are synonyms used for?
How do I manually create a database in oracle?
What is truncate oracle?
How to add a new column to an existing table in oracle?
How to assign query results to variables?