Delete duplicate records in the emp table.
Answer Posted / amedela chandra sekhar
delete from emp x where rowid>(select min(rowid) from emp
where rmpno=x.empno);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we insert data into view?
What is having clause in sql?
How many commands are in sql?
Is sql difficult?
When you have to use a default "rollback to" savepoint of plvlog?
Any attempt to navigate programmatically to disabled form in a call_form stack is allowed?
What is graph sql?
how to rename an existing column in a table? : Sql dba
What is data control language?
What is rename in sql?
Define the select into statement.
What is the use of sql trace?
Which command is used to delete a package?
What is an example of translating a date into julian format?
why does the selected column have to be in the group by clause or part of an aggregate function? : Sql dba