Solution to Exercise 3
Solution to exercise 3.
We'll cover the following...
Solution
MySQL
SELECT PROJECT, COUNT(Emp_Id) AS Emp_CountFROM SALARYGROUP BY PROJECTORDER BY Emp_Count DESC;
...
Solution to exercise 3.
SELECT PROJECT, COUNT(Emp_Id) AS Emp_CountFROM SALARYGROUP BY PROJECTORDER BY Emp_Count DESC;