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
what is not null constraint? : Sql dba
Mention what is the function that is used to transfer a pl/sql table log to a database table?
What is full join?
What are database links used for?
What is the difference between partitioning and sharding?
Is primary key clustered index?
How does join work in sql?
Why is theta join required?
Which is better stored procedure or query?
Difference between table function and pipelined function?
How do you modify a trigger?
What is the difference between having clause and where clause?
Explain select statements in sql?
What is the use of pl/sql table?
how to create a new view in mysql? : Sql dba