how to delete all duplicate records from a table using
subquery?
Answer Posted / dharmendra
delete from emp e1 where rowid >(select min(rowid) from emp
e2 where e1.empid=e2.empid)
| Is This Answer Correct ? | 12 Yes | 5 No |
Post New Answer View All Answers
How to run queries on external tables?
Explain what are the characteristics of data files?
Can group functions be used in the order by clause in oracle?
What is oracle instant client?
master table and child table performances and comparisons in Oracle ?
What is a read write transaction in oracle?
What is a snapshot log?
How to drop a stored function?
How to resolve name conflicts between variables and columns?
How to update values on multiple rows in oracle?
What is oracle update statement with inner join ?
What do you understand by database schema and what does it hold?
How can you merge two tables in oracle?
Can you tell me how to add new column in existing views?how?How is possible?
How to upsert (update or insert into a table)?