Delete duplicate records in the emp table.
Answer Posted / smriti
delete from tablename a where a.rowid>(select min(rowid)
from tablename b where a.columnname=b.columnname)
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What are the conditions an underlying table must satisfy before a cursor can be used by a positioned update or delete statement? : Transact sql
discuss about myisam key cache. : Sql dba
What is a dirty read sql?
What is execute immediate?
How do we use distinct statement? What is its use?
What is transaction control language (tcl)?
What is sql keyword?
What is the use of function in sql?
define sql update statement ? : Sql dba
what is union? : Sql dba
How many clustered indexes can you have?
How to check if a column is nullable before setting to nullable?
Which operator is used in query for pattern matching?
What are the uses of sysdate and user keywords?
What is sql*loader and what is it used for?