Given the table below , which query shows How many students are in each department ?
SELECT COUNT(*) FROM Students;
SELECT COUNT(*) FROM Students ORDER BY Department;
Select Department, COUNT(*) FROM Students GROUP BY Department;
SELECT Student BY Department;