Delete the emps whose salaries are lowest sals of their own
dept.
Answer Posted / raji_4u
DELETE FROM EMP E1
WHERE E1.SAL =
(SELECT MIN(SAL) FROM EMP E2
WHERE E1.DEPTNO = E2.DEPTNO
)
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
What is rowid in sql?
What is delete command in sql?
What are the various restrictions imposed on view in terms of dml?
What is the difference between truncate and drop statements?
Can ddl statements be used in pl/sql?
What is pl sql collection?
What are the possible values that can be stored in a boolean data field?
Can we use pl sql in mysql?
Explain the commit statement.
How to use sql statements in pl/sql?
What is a clob in sql?
What is sql profiling in oracle?
What is data modelling in sql?
What is the use of index in sql?
Is record in pl sql?