题解 | 统计加班员工占比

统计加班员工占比

https://www.nowcoder.com/practice/6c0a521c36e14c7599eaef858f6f8233

WITH attendent AS(
    SELECT 
        staff_id,
        if(
            TIMESTAMPDIFF(second,first_clockin,last_clockin)/3600>9.5, #需要使用secound->hour的转换,并不能直接使用hour计数
            1,
            0
        ) AS jiaban
    FROM attendent_tb
)
SELECT
    staff_tb.department,
    concat(round(sum(attendent.jiaban)/count(staff_tb.staff_id)*100,1),'%') AS ratio 
FROM staff_tb
LEFT JOIN attendent
ON staff_tb.staff_id=attendent.staff_id
GROUP BY staff_tb.department
ORDER BY sum(attendent.jiaban)/count(staff_tb.staff_id) DESC;

全部评论

相关推荐

码农索隆:想看offer细节
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务