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 / kishor solanki @ 9904762204
create table newtable as select * from oldtable order by dupcol;
drop oldtable;
rename newtable to oldtable;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the file extension for sql database?
What are the main features of cursor?
What can I use instead of union in sql?
how does a local variable is defined using t-sql? : Transact sql
Mention what are the benefits of pl/sql packages?
Why do we use procedures in sql?
Explain what is table in a database?
When is the explicit cursor used ?
How is use pl and sql?
What does plv msg allows you to do?
What is range partitioning?
What are the various restrictions imposed on view in terms of dml?
Can a procedure in a package be overloaded?
what is a foreign key ? : Sql dba
How bulk collect improves performance?