Delete duplicate records in the emp table.
Answer Posted / 14-07-2007
delete from emp where rowid not in(select min(rowid) from
emp group by empno;
Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
Write a query to display the current date in sql?
What is parameter substitution in sql?
Explain what is table in a database?
What is difference between mysql and postgresql?
What is having clause in sql?
Explain locks? : Transact sql
Is json a nosql?
What is the purpose of cursors in pl/sql?
What problem one might face while writing log information to a data-base table in pl/sql?
What is oracle sql developer?
Explain exception handling in pl/sql?
What does select top 1 do in sql?
What is memory optimized table?
Is sql port 1433 encrypted?
how are mysql timestamps seen to a user? : Sql dba