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 / venkateswararao
delete from emp p where rowid<(select max(rowid) from emps where p.ename=s.ename)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do we accept inputs from user during runtime?
What do you mean by stored procedures? How do we use it?
What does a pl/sql package consist of?
What is group by in sql?
What is over () in sql?
Why we use triggers in mysql?
How do you take the union of two tables in sql?
Does truncate need commit?
How do you sort in sql?
Is left join inner or outer?
What is pl/sql table? Why it is used?
Which column in the user.triggers data dictionary view shows that the trigger is a pl/sql trigger?
what is 'mysqlcheck'? : Sql dba
How do you create an update query?
Compare sql & pl/sql