how to delete duplicate rows in sql server2005
Answer Posted / apps
select distinct eno,ename into temp_table from main_table
drop table main_table
-----
sp_rename temp_table,main_table
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Write query to return all rows sql?
Explain temporary table vs table variable by using cursor alternative?
What is sql language?
What are views in ms sql server?
Mention the differences between having and where clause.
What are dml (data manipulation language) statements in ms sql server?
Using the customer, and order table in northwind database, please write a query to produce xml?
What is serializable?
What is ems sql management studio? : sql server management studio
Does sql server 2000 full-text search support clustering?
What should be the fill factor for indexes created on tables? : sql server database administration
can SSRS reports Cache results?
Explain about remote stored procedure?
Explain unique key in sql server?
What is faster join or union?