您好,登錄后才能下訂單哦!
SQL 中怎么實(shí)現(xiàn)某時間段的統(tǒng)計(jì)業(yè)務(wù),相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
有一張錯誤上報表,下面只將與本文相關(guān)的字段羅列如下:上報人(ReportPerson)、上報錯誤ID(ErrorID)、上報時間(ReportTime)、狀態(tài)(State),其中值為0(未解決)、1(已處理)、2(已解決)。 現(xiàn)在要做的是統(tǒng)計(jì)在某個時間段[beginTime,endTime](其中beginTime,endTime由前臺進(jìn)行傳入)內(nèi),每個上報人上報錯誤點(diǎn)的總數(shù)以及已解決錯誤的總數(shù)。復(fù)制代碼 代碼如下: 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)
看完上述內(nèi)容,你們掌握SQL 中怎么實(shí)現(xiàn)某時間段的統(tǒng)計(jì)業(yè)務(wù)的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。