KnowledgeBoat Logo

Computer Science

Find out number of employees having "Manager" as Job.

SQL Joins & Grouping

1 Like

Answer

SELECT COUNT(*) AS NumManagers
FROM EmpSalary
WHERE Designation = 'Manager';
Output
+-------------+
| NumManagers |
+-------------+
|           3 |
+-------------+

Answered By

1 Like


Related Questions