Computer Science, asked by 81730280, 4 months ago

Write an SQL query to show all departments along with

the number of people in there.​

Answers

Answered by ItzGuriSidhu
27

Answer:

Write an SQL query to fetch the count of employees working in the department 'Admin'. Ans. The required query is: SELECT COUNT(*) FROM worker WHERE DEPARTMENT = 'Admin';

Similar questions