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