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
How to link tables in sql server?
in the physical file layout, where should the transaction log be stored in relation to the data file?
Explain the truncate command? : SQL Server Architecture
Explain powershell included in sql server 2008?
role of sql sever 2005 in database rather than any other database
How to change the data type of an existing column with "alter table" statements in ms sql server?
Explain unique key in sql server?
What are data regions?
What are various aggregate functions that are available?
How to turn on the mssql api module in php?
Explain four layers of abstraction microsoft architectured?
Explain nested trigger in sql?
What do you mean by data integrity?
Explain an incremental backup?
What is the return type of executeupdate ()?