mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 03:27:07 +00:00
Time: 1143 ms (13.87%), Space: 0B (100.00%) - LeetHub
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
# Write your MySQL query statement below
|
||||
SELECT
|
||||
event_day as day,
|
||||
emp_id,
|
||||
sum(out_time - in_time) AS total_time
|
||||
FROM Employees
|
||||
GROUP BY emp_id, event_day;
|
||||
Reference in New Issue
Block a user