SELECT exam_board, COUNT(*)
FROM subjects
GROUP BY exam_board;
This is a block of code where 'exam_board' is a field in a table called 'subjects'.
What does each line of code in this block do?
SELECT exam_board, COUNT(*)
FROM subjects
GROUP BY exam_board;
This is a block of code where 'exam_board' is a field in a table called 'subjects'.
What does each line of code in this block do?