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
How can we delete duplicate rows in a table?
How to define and use table alias names in oracle?
What is blob datatype?
what is normalisation?what are its uses?
How to rename an index?
How many types of tables are there in oracle?
What is a cursor in oracle?
Explain the use of log option in exp command.
What is the disadvantage of User defind function?
How do I find my oracle client driver version?
what is IDE,DMV in sql server?
What is the difference between $oracle_base and $oracle_home?
What is a select query statement in oracle?
Explain the importance of .pll extension in oracle?
How to use "in" parameter properly?