gpt4 book ai didi

php - 如何在MYSQL中获取带有日期和时间的总工作时间并引用签到和第二天 checkout 时间

转载 作者:行者123 更新时间:2023-11-29 22:42:11 24 4
gpt4 key购买 nike

下表显示了员工的签到和签退时间

employee_oid 报告日期 报告时间

 11     2014-12-01 08:02:31
21 2014-12-01 08:13:04
06 2014-12-01 08:13:04
11 2014-12-02 18:03:41
21 2014-12-02 16:36:02
06 2014-12-03 16:36:02
11 2014-12-04 08:02:31
06 2014-12-04 08:36:02
21 2014-12-02 08:36:02
11 2014-12-04 16:34:20
06 2014-12-05 08:36:02
21 2014-12-05 08:50:50

最佳答案

工作时间的算法是什么?假设工作时间等于结帐时间减去 checkin 时间,我得到以下 SQL:

SELECT 
Emp_id,
report_date,
MIN(report_time) AS checkin_time,
MAX(report_time) AS checkout_time,
DATE_FORMAT (MAX(report_time) - MIN(report_time), '%h') AS working_hours
FROM
report
GROUP BY Emp_id;

但是,当员工一次又一次去上类时,情况很糟糕......

我想知道为什么员工应该在第二天结账。当我看到两天后退房的06号员工时,我也很困惑。囧

关于php - 如何在MYSQL中获取带有日期和时间的总工作时间并引用签到和第二天 checkout 时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29293780/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com