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 write back and write through caches? : .NET Architecture
What are the important principles of soa (service oriented architecture)?
Explain domestic architecture artifacts? : Dot net architecture
Explain about appdomains?
difference between Response.write,server.transfer and also which one is used when ?
What is the mesi? : Dot net architecture
Explain pipelining? : .NET Architecture
4. Wcf- what Asych and Sych call and how that works
Explain COM with example?
.Net Frame work arch?
What are relation objects in dataset?
how to use custom field validation
Define a virtual memory? : Dot net architecture
What re interop services?
how to set the startup position of the form?