How will you delete duplicate records from a table?
Answer Posted / tharanath.n
delete from table a
where rowid >(select min(rowid) from table b
where a.column = b.column);
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
What are packages in db2?
How can you count the number of rows from a table tab?
What are the various isolation levels possible?
Is it possible to create an Instance in DB2 using DB2 Control Center ?
How to find the number of rows in a db2 table?
What is the default page size of buffer pools?
What does a deadlock mean in DB2?
Which component is responsible for processing sql statements and selecting access paths?
How do we specify index to include or not during bind process.
What is release/acquire in bind?
Define declaration generator (dclgen).
What are the uses of db2 optimizer?
What is reorg?
What is ibm db2 used for?
What happens in bind step in a db2 program?