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
Explain the use of virtual, sealed, override, and abstract.
Define dma? : Dot net architecture
how to change row background color in gridview
What are bindings?
readonly syntax ?
What is the numeric attribute of the textbox control in .net mobile? : Microsoft dot net mobile
What are the main Tools to develop .Net Application?
Explain about common language infrastructure?
What is cache coherency and how is it eliminated? : .NET Architecture
Explain write back and write through caches? : .NET Architecture
What is code access security (cas)?
What are relation objects in dataset?
Define a virtual memory? : Dot net architecture
Explain the types of memory management? : Dot net architecture
What is .net mobile utility controls. Explain with an example? : Microsoft dot net mobile