How to retrieve duplicate rows in a table?
How to delete the duplicate entries in a table?
Answer Posted / pawan k. dubey
delete from employee
where Emp_id not in (select min(Emp_id) from employee
group by Emp_Name)
| Is This Answer Correct ? | 2 Yes | 12 No |
Post New Answer View All Answers
What is the downside of using udf?
I have triggers,views,functions,stored Procedures for a table. When I am dropping that table which objects are deleted?
How to disable triggers using "disable trigger"?
Explain few examples of stored procedure over triggers?
When would you use it?
What happens to a statement batch if there is a compilation error?
What is side by side migration in sql server?
what is datawarehouse?
Why should you use or avoid select * statements?
What are the basic functions for master, msdb, model, tempdb and resource databases?
How many instances per computer are there in sql server 2000?
Can we use where clause in union?
What is extent? Types of extents?
What is an etl file?
How to write an inner join with the where clause in ms sql server?