AI Features

Solution to Exercise 3

Solution to exercise 3.

We'll cover the following...

Solution

MySQL
SELECT PROJECT, COUNT(Emp_Id) AS Emp_Count
FROM SALARY
GROUP BY PROJECT
ORDER BY Emp_Count DESC;
...