SQL 查询,统计按月 w 分组的状态。修订系统
在尝试随着时间的推移生成工单状态视图时,我遇到了一些挑战:
背景:
包含工单记录的数据库设置为允许基本的重新查看,并包括以下列(这是我认为的)相关):
ID - 原始 - 状态 - date_created - 修改
所需的解决方案:
一个表格,其中包括: 按周/月/年分组的每个状态的计数。
挑战:
排除状态未更改的任何修订。
提前感谢您的帮助,这让我的大脑发热:)
While attempting to produce a view of ticket statuses over time, I've run into a few challenges:
Background:
The database containing ticket records is setup to allow basic re-visioning, and includes the following columns (this is what I believe to be relevant):
ID - original - status - date_created - modified
Desired Solution:
A table which includes: The count of each status grouped by week/month/year.
The challenge:
Excluding any revision in which the status has not changed.
Thanks ahead of time for any assistance, this is heating up my brain :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应该是这样的(没有按日期分组):
Should be something like this (without the grouping by date):
带有
EXISTS/
NOT EXISTS
应该是您要查找的内容。
A subquery with
EXISTS
/NOT EXISTS
should be what you are looking for.