write a query to delete similar records in same table
Answer Posted / raj
DELETE FROM EMP E1
WHERE ROWID <(SELECT MAX(ROWID) FROM EMP E2 WHERE E1.ENO =
E2.ENO)
| Is This Answer Correct ? | 25 Yes | 3 No |
Post New Answer View All Answers
What is constant in pl sql?
What is forward declaration in pl sql?
How do you copy a table in sql?
Explain the purpose of %type and %rowtype data types with the example?
What is a behavioral trigger?
What is the use of desc in sql?
What is difference between joins and union?
What is before and after trigger?
which operator is used in query for pattern matching? : Sql dba
What is the difference between unique and primary key constraints?
How do sql triggers work?
What are the subsets of sql?
What are literals in sql server?
What is the purpose of the partition table?
What is sql architecture?