Which Department has MOST NUMBER of employees?
Answer Posted / ns
SELECT count(*), department_id
FROM employees
GROUP BY department_id
HAVING count(*) =
(SELECT max(count(*))
FROM employees
GROUP BY department_id)
| Is This Answer Correct ? | 40 Yes | 46 No |
Post New Answer View All Answers
material view and view disadvantages?
what is Single Byte Overhead...?
Why is oracle database so popular?
definition of cluster and non-clustered index?
Where do we use decode and case statements?
What is the difference between postgresql and oracle?
Explain constraining triggers.
How to work with data objects interactively?
State some uses of redo log files?
What are the logical operations?
How to check your oracle database 10g xe installation?
How do I start tns listener?
Can multiple columns be used in group by in oracle?
What is a parameter file in oracle?
What is the parameter mode that can be passed to a procedure?