how to delete duplicate rows from table in sql server
Answer Posted / suresh s
delete tblname where columname in (select columnname
FROM tblname GROUP BY columnname having count(columnname)
>=2)
| Is This Answer Correct ? | 25 Yes | 30 No |
Post New Answer View All Answers
How do you debug a procedure in sql server?
what is a major difference between sql server 6.5 and 7.0 platform wise? : Sql server database administration
How do I find sql server instance name?
hi, how to link a text file and a .rpt file in my tables of sql server and to retrieve those records for further use. reply me as soon as possible.
Explain the different types of backups available in sql server? : sql server database administration
What are sql servers used for?
Explain external key management in sql server 2008
What does truncate do?
What are the differences between local and global temporary tables?
Explain the cursor lock types?
What is a print index?
How to create an index on a view?
What does the update command do?
What is function of CUBE ?
What is a view and what are its advantages?