Answers for "Write an SQL query to fetch the count of employees working in the department ‘Admin’."

0

Write an SQL query to fetch the count of employees working in the department ‘Admin’.

SELECT COUNT(*) FROM worker WHERE DEPARTMENT = 'Admin';
Posted by: Guest on July-26-2021

Code answers related to "Write an SQL query to fetch the count of employees working in the department ‘Admin’."

Browse Popular Code Answers by Language