SQL - GROUP BY and HAVING
Consider the table
attendance with columns class, student, and date. What does this query return?SELECT class, date, COUNT(student) FROM attendance GROUP BY class, date;