How to retrieve duplicate rows in a table?
How to delete the duplicate entries in a table?
Answer Posted / arun kumar k s
drop table #TEMP select distinct * into #TEMP from
TABLE_NAME delete from TABLE_NAME insert into TABLE_NAME
select * from #TEMP
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How to create a view and a stored procedure in ms sql server using "create view/procedure" statements?
Can I disable or restrict ssrs export formats (rendering formats)?
What are the disadvantages of indexes?
What are user-defined functions (udfs) in sql server?
How to create a scrollable cursor with the scroll option?
Create and insert into temp table in sql server?
is there a column to which a default can't be bound? : Sql server database administration
How to convert character strings into numeric values?
What are the differences between lost updates and uncommitted dependencies?
Explain what is the difference between a local and a global temporary table?
Where to find ntwdblib.dll version 2000.80.194.0?
What is difference between rownum and rowid?
what is new philosophy for database devises for sql server 7.0? : Sql server database administration
What have included columns when we talk about sql server indexing?
Explain about extended stored procedure?