How to delete same emp id in sql query for exmaple in emp
table emp id, empname, emp address. for example emp id =5,
repeated in two times in rows same id how to delete same
empid please any one of the write query send in my id
Answer Posted / ajit
DELETE FROM EMP WHERE EMPID= 5 AND ROWNUM < 2;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between a primary key and a unique key?
What is coalesce sql?
What is pragma in sql?
Is full outer join same as cross join?
Is the primary key an index?
Explain what is a field in a database and record in a database?
how to drop an existing table in mysql? : Sql dba
What is nvl?
Can we use pl sql in sql server?
How do I remove duplicates in two columns?
How many types of cursors are available in pl/sql?
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?
what is log shipping? : Sql dba
What is an index in sql with example?
how to delete an existing column in a table? : Sql dba