我有几张票,想提供一份基于 PHP 服务水平协议的报告。
新工单可能具有具有特定时间戳的“新”状态,并且在一段时间后具有特定时间戳的“关闭”状态。
应该计算这两个时间戳之间的差异,但是只有从周一到周五(上午 8 点到下午 4.30)的工作时间应该是相关的。因此,如果工单在周五下午 4 点创建并在下周一上午 9 点关闭,则经过的时间应为 1.5 小时。
有人知道如何从数据库中获取异常结果吗?
数据库是mysql数据库,bugtracking系统是开源的BTS Mantis Bugtracker。
数据库表的一个非常简单的部分:
表错误:
身份证 | 状态 | date_created (TIMESTAMP) | last_modified (TIMESTAMP)
表历史
身份证 | bug_id(参考错误)| 状态_旧 | 新状态 | date_modified (TIMESTAMP)
我在 PHP 中的查询:获取在特定时间范围内设置为状态 30 的所有错误。对于最高 SLA 级别,此帧介于 0 到 2 小时之间。查询工作正常 - 但时间范围不关心工作时间......
选择 bug.id 作为 ID 从 mantis_bug_table 作为 bug,mantis_bug_history_table 作为历史 WHERE history.new_status = 30 和 history.bug_id = bug.id AND (history.date_modified - bug.date_submitted) < '{$timeframe_end}' AND (history.date_modified - bug.date_submitted) > '{$timeframe_start}'";