题解 | 统计各岗位员工平均工作时长
统计各岗位员工平均工作时长
https://www.nowcoder.com/practice/b7220791a95a4cd092801069aefa1cae
# 这题的数据挺有意思,会有人上班没打卡,下班打卡的情况。 select post ,round(sum(unix_timestamp(last_clockin)-unix_timestamp(first_clockin))/3600/count(*),3) work_hours from staff_tb t1 left join attendent_tb t2 on t1.staff_id=t2.staff_id where first_clockin is not null and last_clockin is not null group by post order by work_hours desc;