select count(*) from student;
SELECT DISTINCT job,count(*) FROM studentGROUP BY job;
SELECT DISTINCT job,count(*) FROM student
GROUP BY job;