欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SQL 实现某时间段的统计业务

程序员文章站 2023-11-24 09:05:22
有一张错误上报表,下面只将与本文相关的字段罗列如下:上报人(reportperson)、上报错误id(errorid)、上报时间(reporttime)、状态(state)...
有一张错误上报表,下面只将与本文相关的字段罗列如下:上报人(reportperson)、上报错误id(errorid)、上报时间(reporttime)、状态(state),其中值为0(未解决)、1(已处理)、2(已解决)。

现在要做的是统计在某个时间段[begintime,endtime](其中begintime,endtime由前台进行传入)内,每个上报人上报错误点的总数以及已解决错误的总数。
复制代码 代码如下:

select a.reportperson,a.sumoferror,b.solvederror
from(select count(errorid) as sumoferror,reportperson
from pcr_constructinfo
where
(reporttime>begintime) and (reporttime<endtime) group by reportperson)
a left join
(select reportperson,count(errorid) as solvederror
from pcr_constructinfo
where (state=2) and (reporttime>begintime) and (reporttime<endtime) group by reportperson) b
on (a.reportperson=b.reportperson)

生成的结果图为
SQL 实现某时间段的统计业务