Employees
이탈 시간 - 진입 시간
SELECT event_day AS day, emp_id, SUM(out_time) - SUM(in_time) AS total_time FROM Employees GROUP BY emp_id, event_day