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
What is sqlerrd?
what are the differences between char and nchar? : Sql dba
What are procedures used for?
How does cross join work in sql?
what are date and time data types in mysql? : Sql dba
Explain mutating table error.
How do you remove duplicates without using distinct in sql?
List the various privileges that a user can grant to another user?
Can we join more than 2 tables in sql?
What is assignment operator in pl sql?
what are ddl statements in mysql? : Sql dba
What is a stored procedure in sql with example?
What are the different types of constraints?
What are stored procedures used for?
Are stored procedures faster than queries?