题解 | 统计加班员工占比

统计加班员工占比

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

select
    department,
    concat(
        cast(
            round(
                count(
                    if(
                        timestampdiff(minute, first_clockin, last_clockin) > 570,
                        1,
                        null
                    )
                ) / count(*) * 100,
                1
            ) as CHAR
        ),
        "%"
    ) as ratio
from
    staff_tb st
    inner join attendent_tb at on st.staff_id = at.staff_id
group by
    department
order by
    ratio desc

全部评论

相关推荐

03-14 18:30
华侨大学 Java
牛客20485985...:没关系的吧,我也是双飞大二,有过很多约面。海投呗,我觉得介意大二的不是很多。你的项目没毛病。建议看一看agent
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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