how to delete duplicate rows from a specified table(only
single table)
how do you know which join is need to be used
Answer Posted / dinesh mohan upadhyay
delete from emp
where rowid>any(select min(rowid) from emp a where
a.col1=col1)
| Is This Answer Correct ? | 15 Yes | 8 No |
Post New Answer View All Answers
Does a primary key have to be a number?
How does pl sql work?
How to convert comma separated string to array in pl/sql?
How do we accept inputs from user during runtime?
what is the use of double ampersand (&&) in sql queries?
What does over partition by mean in sql?
What is case function?
What is the difference between the implicit and explicit cursors?
What is the main reason behind using an index?
what is a field in a database ? : Sql dba
Is sql easier than java?
What is nvarchar in sql?
how can you see all indexes defined for a table? : Sql dba
What is #table in sql?
what is an extent ? : Sql dba