https://leetcode.com/problems/students-and-examinations/?envType=study-plan-v2&envId=top-sql-50🗒️SQL 코드 풀이 SELECT ST.student_id, ST.student_name, SB.subject_name, COUNT(EX.subject_name) AS attended_exams FROM Students ST CROSS JOIN Subjects SB LEFT JOIN Examinations EX ON ST.student_id = EX.student_id AND SB.subject_name = EX.subject_name GROUP BY ST.st..