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
Write a code to select distinct records without using the DISTINCT keyword.
What is meant by indexing?
How can you find out which stored procedures are recompiling?
What are the steps to follow to configure SQL*Net?
What are the types of dml?
What is indexed view? How to create it?
What is bit data type?
State the difference between union and union all?
In which format does an image save in SQL Server database ?
Where are full-text indexes stored?
Why are sql functions used?
What is the beast way to write CTE in SQL Server ?
What is unique key constraint?
How to drop an existing table?
What is the server name in sql server?