There are three departments A,B and C.Write a query to
display the names of all the persons( in departments other
than A) who are paid higher than the person receiving the
lowest salary in DEPT A
Answer Posted / ofss
select E.name from department D, emp E
where D.name = E.dname
and E.dname <> 'A'
and E.sal > (select min(E.sal) from department A, emp E
where A.name = E.dname
And E.dname = 'A')
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are scripts in psychology?
Can you write a script to portray how set –x works?
What language is bash?
What is the crontab?
How do I run a shell script in powershell?
What is sudo command?
What is a shell made of?
What is sed in shell script?
What is the equivalent of a file shortcut that we have a window on a linux system?
Is bash a shell script?
Is shell a part of kernel?
How do I run a .sh file?
What is the best shell scripting language?
What is scripting used for?
How can you get the value of pi till a 100 decimal places?