SQL 查询,统计按月 w 分组的状态。修订系统

发布于 2024-11-30 18:18:24 字数 280 浏览 2 评论 0原文

在尝试随着时间的推移生成工单状态视图时,我遇到了一些挑战:

背景:

包含工单记录的数据库设置为允许基本的重新查看,并包括以下列(这是我认为的)相关):

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素食主义者 2024-12-07 18:18:24

应该是这样的(没有按日期分组):

 SELECT t1.*
 FROM table as t1
 JOIN table as t2 ON (t1.original = t2.ID)
 WHERE t1.status != t2.status;

Should be something like this (without the grouping by date):

 SELECT t1.*
 FROM table as t1
 JOIN table as t2 ON (t1.original = t2.ID)
 WHERE t1.status != t2.status;
顾铮苏瑾 2024-12-07 18:18:24

带有 EXISTS/NOT EXISTS应该是您要查找的内容。

A subquery with EXISTS/NOT EXISTS should be what you are looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文