how to delete duplicate rows in sql server2005
Answer Posted / sundaravadivel g
Select top 1 * from table where a=1
select top 1* into table1 from table where a=1
delete from table
insert into table
select * from table1
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Explain can you implement data mining in ssrs?
Why do we use functions?
In what version of sql server were synonyms released?
In which files does sql server actually store data?
Explain hostprotectionattribute in sql server 2005?
Explain filestream storage of sql server 2008?
How to copy data from one table to another table?
How would you use user_constraints table in DB?
What are the types of database recovery models?
What is Command line parameters in PLSQL.?
What does man by sql wildcard characters in sql server?
What is the difference between ddl and dml?
If no size is defined while creating the database, what size will the database have?
How to list all triggers in the database with sys.triggers in ms sql server?
what are user defined datatypes? : Sql server database administration