how to delete duplicate rows from a specified table(only
single table)
how do you know which join is need to be used
Answer Posted / samir kumar sahoo.
DELETE FROM tablename A WHERE ROWID>(SELECT MIN(ROWID) FROM
tablename B WHERE A.key_values=B.key_values);
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Why is pl sql used?
How many developers work on postgresql?
What is view? Can we update view
What is basic structure of pl sql?
what are different types of keys in sql?
How to process query result in pl/sql?
How does one load ebcdic data? : aql loader
what is index? : Sql dba
Why do we use view in sql?
Write a query to display the current date in sql?
What are the most important ddl statements in sql?
can a stored procedure call itself or recursive stored procedure? How much level sp nesting is possible? : Sql dba
Can we insert data in view?
what are tables and fields? : Sql dba
Why are cursors used?