write a query to delete similar records in same table
Answer Posted / nirmalendu
delete from table_name where rowid not in(select min(rowid)
from table_name group by column_name);
** column_name which having duplicate record
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is faster join or subquery?
What are the parameter modes supported by pl/sql?
What is serial sql?
what is isam? : Sql dba
how can we transpose a table using sql (changing rows to column or vice-versa) ? : Sql dba
Can we use update in sql function?
What are the features of pl sql?
what is sp_pkeys? : Transact sql
What is nosql vs sql?
what are the different tables present in mysql, which type of table is generated when we are creating a table in the following syntax: create table employee (eno int(2),ename varchar(10)) ? : Sql dba
Which is better trigger or stored procedure?
What are % type and % rowtype?
Can a procedure in a package be overloaded?
What is group by in sql?
how to include numeric values in sql statements? : Sql dba