write a query to delete similar records in same table
Answer Posted / kirankumar.vangeti
delete from emp
where rowid not in (select max(rowid)
from emp
group by emp_number);
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How many types of primary keys are there?
Explain the significance of the & and && operators in pl sql.
Can you skip header records while loading? : aql loader
What is sqlservr exe?
What is sql stand for?
How does join work in sql?
What is not equal in sql?
How to run sql*plus commands in sql developer?
What is the current version of sql?
What is oracle and pl sql?
what is oltp (online transaction processing)? : Sql dba
What is the command used to fetch first 5 characters of the string?
What is synchronized subquery?
Write a query to display the current date in sql?
what are the different tables present in mysql, which type of table is generated when we are creating a table in the following syntax: create table employee (eno int(2),ename varchar(10)) ? : Sql dba