Delete the emps whose salaries are lowest sals of their own
dept.
Answer Posted / roopesh kumar
delete from emp where (deptno,nvl(comm,0)) in (select
deptno,min(nvl(comm,0)) from emp
group by deptno)
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What is the benefit of foreign key?
What is pl sql script?
what are the types of join and explain each? : Sql dba
What is execution plan in sql?
What is data profiling in sql?
What are the benefits of pl sql?
What are the ddl commands?
What is nosql vs sql?
Why cannot I use bind variables in ddl/scl statements in dynamic sql?
What is sql partition?
What are secondary keys?
Can a foreign key have a different name?
Which are sql * plus commands?
What is right join in sql?
What is the left table in sql?