Is it possible to delete duplicate rows in a table without
using a temporary table ?
Answer Posted / saravanan
select * into #empnew from (select * from emp union select
* from emp) a
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
What is the difference between resultset and resultsetmetadata?
What is identity?
What is database architecture? : SQL Server Architecture
What is a transact-sql statement batch in ms sql server?
How to use old values to define new values in update statements in ms sql server?
Is profiler the only tool that has the ability to audit and identify ddl events? : sql server security
How do you create an execution plan?
What is reference section?
Tell me something about security and sql azure?
how to control the amount of free space in your index pages? : Sql server database administration
What is msdb database? : SQL Server Architecture
What is a sql join?
what is the difference between a primary key and a unique key? : Sql server database administration
What are horizontal and vertical scaling?
List all the types of user-defined functions?