CBSE Class 12 Informatics Practices
Question 85 of 90
Querying Using SQL — Question 25
Back to all questionsSELECT d.DeptName AS Department_Name, COUNT(e.EMPNO) AS Number_of_Employees
FROM DEPT d, EMPL e
WHERE d.Deptno = e.DEPTNO
GROUP BY d.DeptName;