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 application trigger?
How much does a sql dba make? : SQL DBA
Is sql a backend language?
What is sql lookup?
Write a sql query to find the names of employees that begin with ‘a’?
how to drop an existing index in mysql? : Sql dba
Is inner join same as self join?
What is composite data type in pl sql?
Can we rename a column in the output of sql query?
What are instead of triggers?
What is a .db file?
How can you select unique records from a table?
Can we join tables without foreign key?
Difference between global and parameter variables?
Does google use sql?