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
How to use boolean type in select statement?
Is progress software supports to ( pl/sql )?
Explain 3 basic parts of a trigger.
Which software is used for pl sql programming?
What is faster join or subquery?
How do you update f as m and m as f from the below table testtable?
what is offset-fetch filter in tsql? : Transact sql
What does select top 1 do in sql?
What is a heap in sql?
what is a control file ? : Sql dba
What are operators available in sql?
what is log shipping? : Sql dba
what are enums used for in mysql? : Sql dba
What is the use of sql trace?
What is the basic structure of an sql?