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
What is the difference between online and offline backups?
Describe the types of sub query?
How do we get field detail of a table?
What is a cursor variable?
Is oracle the best database?
How to convert numbers to characters in oracle?
What is the data pump export utility?
Explain what are the type of synonyms?
interview questions with answer for cts
What happens in oracle commit?
Difference between inner join vs where ?
What are the different pseudo commands? Explain in general?
What is sharded cluster?
Explain index?
What is a procedure in oracle?