How to delete the duplicate records from table(having bulk
records)?
Answers were Sorted based on User's Feedback
Answer / rajani
delete from emp where rowid not in ( select max(rowid) from emp group by empno )
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / asha
DELETE FROM school WHERE badgeid NOT IN(SELECT MAX
(badgeid) FROM school GROUP BY id);
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / 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 |
Answer / mml
delete from students where badgeid not in (select max(id)
from students group by badgeid);
| Is This Answer Correct ? | 0 Yes | 3 No |
How to delete the duplicate records from table(having bulk records)?
Different types of authentication modes in .net framework ?
Difference between throw exception and rethrowing ?
What is serialization, how it works in .NET?
What is a managed code is dim fs as filestreamobject is a managed code? : .NET Architecture
what is ado.net
Describe the Managed Execution Process in .NET?
0 Answers InfoAxon Technologies,
Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?
can aspx page have multi language declarations ?
Explain How to improve the cache performance? : Dot net architecture
What is .net mobile forms? : Microsoft dot net mobile
what is authentication and authorization?how do they differ?