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
what is the scenario where you take the database to NoArchivelog mode?
What is the oracle implicit cursor?
how do u setup a replication site?
what are archived logs?
What is the use of file param in imp command?
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
Can we create database in oracle using command line ?
How to define an anonymous block?
How to test null values?
What is a relational database management system?
What is transport network substrate (tns) in oracle?
Explain the use of record length option in exp command.
How to define a record variable to store a table row?
What is the data pump export utility?
What happens internally when the user types userID/password@string in SQL PLUS Thanks-Bhaskar