Table E:
Name dept month sal
1 A JAN 800
2 B APR 1000
3 A JAN 300
4 A JAN 600
5 C JUN 400


1) SELECT HIGHEST SAL PAID DEPT IN JAN MONTH?
2) WRITE QUERY GET MAX SAL DEPT NO?

Answer Posted / parag

1) SELECT DISTINCT DEPT FROM TABLE
WHERE SAL >=
(SELECT MAX(SAL) FROM TABLE
WHERE MONTH = 'JAN');

2) SELECT DISTINCT DEPT, SAL FROM TABLE
WHERE SAL >=
(SELECT MAX(SAL) FROM TABLE);

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a private synonym?

1289


why dont we assign not null constraint as table level constraint.

2474


Explain oracle 12c new features for developers?

748


What is set verify off in oracle?

805


What are the attributes of the cursor?

748


What is a cursor and what are the steps need to be taken?

770


Design database draw er diagram for a certain scenario ?

4307


What is recovery manager(rman) backup in Oracle?

841


Explain user account with reference to oracle.

739


What is tns entry?

800


What is a table index?

745


How to create a new view in oracle?

819


How to generate query output in html format?

741


How do I connect to oracle?

739


Explain joins in oracle?

740