题解 | 统计加班员工占比

统计加班员工占比

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

#将加班的人标记出来
with t as(
select
a.staff_id,
if(timediff(timediff(last_clockin,first_clockin),'9:30:00')>0,1,0) diff,
department
from attendent_tb a left join staff_tb s
on a.staff_id = s.staff_id
)

select
department,
concat(round((sum(diff) / count(1))*100,1),'%')  ratio
from t
group by department
order by ratio desc

全部评论

相关推荐

03-17 23:54
黑龙江大学 Java
来个白菜也好啊qaq:可以的,大厂有的缺打手
点赞 评论 收藏
分享
03-12 15:35
嘉应学院 Python
快说谢谢牛牛精灵:说不定就是下一个寒武纪!
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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