Database 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; Was this page helpful? Thanks for your feedback! Thanks for your feedback! Help us improve this page by using our feedback form.