How to delete the duplicate records from table(having bulk
records)?
Answer Posted / venkat
delete from employee
where
empid in (select e.empid from employee e, employee e1
where e1.empid=e.empid
group by e.empid
having count(e.empid)>1)
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
how to change row background color in gridview
Explain
How cache is used? : Dot net architecture
What is a service contract, operation contract and data contract?
Explain the components required to develop mobile applications with .net mobile? : Microsoft dot net mobile
Explain the difference between l1 and l2 cache? : Dot net architecture
question related to table havi colspan and row span
What is a clickonce application?
What is new in the .net 2.0 class library?
What is .net mobile utility controls. : Microsoft dot net mobile
Explain the five stages in a dlx pipeline? : Dot net architecture
Does .NET runtime offer Deterministic Destruction or not?
How can I write my own .NET host?
Explain how cache is used? : Dot net architecture
Can I create my own permission set?