1741. Find Total Time Spent by Each Employee ¶ SQL 1 2 3 4 5 6SELECT event_day AS day, emp_id, SUM(out_time - in_time) AS total_time FROM Employees GROUP BY 1, 2;