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 are the restrictions that views have to follow? : SQL Server Architecture
How many triggers you can have on a table?
What is the full form of dql?
What is the advantage of sql server?
If any stored procedure is encrypted, then can we see its definition in activity monitor?
Define full outer join?
What is set nocount on?
What is encryption key?
how can you attach more than 20 ldf files in sql server
What is sql server replication? : sql server replication
What is difference between view and materialized view?
What do you understand by a view?
How retrieve field names from the table in SQL through JAVA code?
What is user-defined function?
What is sql stored procedure?