简单分析sql统计查询

简单分析sql统计查询

ID:45973033

大小:73.00 KB

页数:3页

时间:2019-11-19

简单分析sql统计查询_第1页
简单分析sql统计查询_第2页
简单分析sql统计查询_第3页
资源描述:

《简单分析sql统计查询》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、示例表关系如下[v_MatchInReward]视图如卜CTEATEVIEW[dbo].[v_MatchInReward]ASSELECTdbo.Matchinfo.DemandID,dbo.Matchinfo.DemandUserID,dbo.Matchinfo.MatchType,dbo.Matchinfo.IsReadByDemandProvider,dbo•Matchinfo.Status,dbo.MAtchlnfo.OpertorlD,dbo.Matchinfo.IsAudited,dbo.Matchinfo.IsDeleted,dbo•Reward・BountyAmoun

2、tFROMdbo.MatchinfoINNERJOINdbo.RewardONdbo.MatchInfo.DemandID=dbo.Reward.RewardlD要求按照Matchinfo.DemandUserID分纽.统计Status=4的次数IsReadByDemandProvider=lfKj^&BountyAmount金额的总数以及在MatchlnfolH现的数据条数setstatisticstimeoffsetstatistiesioon/版本一错误用法,先使用casewhen再使用count,就相当于先根据casewhen分组,然后才统计,不是真正的按条件/SELECTD

3、emandUserID,IsNull(COUNT(1),0)asInRewardCount,IsNull(SUM(BountyAmount),0)ASBountyAmountCount,IsNull(CASEIsReadByDemandProviderWHEN0THENCOUNT(1)END,0)ASNotSeeCount.IsNull(CASE[Status]WHEN4THENCOUNT(1)END,0)ASCandidateCountFROMv_MatchInRewardWHEREDemandUserID=1ANDMatchType=3GROUPBYDemandUserID,Is

4、ReadByDemandProvider,[Status]/版本二累赘用法,使用主查询分组,多个子查询來统计,造成多次表扫描/SELECTm.DemandUserIDfIsNull(COUNT(1),0)asInRewardCountzIsNull((selectSUM(BountyAmount)fromRewardinnerjoinmatchinfoonRewardID=matchinfo.DemandIDwherematchinfo.DemandUserID=m・DemendUserlD),0)ASBountyAmountCountzIsNull((selectcount(1)f

5、rommatchinfowhereIsReadByDemandProvider=0anddemandUserId=m・DemandUserlD)z0)ASNotSeeCount,IsNull((selectcount(l)frommatchinfowhere[Status]=4anddemandUserId=m・DemandUserlD)z0)ASCandidateCountFROMmatchinfoasmWHEREm.DemandUserID=1ANDm.MatchType=3GROUPBYm・DemandUserlD版本三止确用法,在count函数屮使用casewhen,不会导致

6、多层级分组,得到的是真实的数据缺陷是,count虽然没有统计ssewhen得到的rw□值(不管设定没设定),但是消息框中还是有整告,尽管没有很实际的数据说明这种情况的不妥,但还是要避免SELECTm•DemandUserlD,IsNull(COUNT(1),0)asInRewardCount,IsNull(SUM(BountyAmount)z0)ASBountyAmountCount,IsNull(count(caseIsReadByDemandProviderwhen0then1end),0)ASNotSeeCount,IsNull(count(case[Status]when4t

7、hen1end),0)ASCandidateCountFROMmetchinfoasminnerjoinRewardasronr.RewardID=m.DemAndlDWHEREm.DemandUserID=1ANDm.MatchType=3GROUPBYm.DemandUserlD/版本四优化-,结合视图在sum函数屮使用casewhen和count的原理是一样的,不会导致多层级分纽.,得到的是真实的数据,而且sum函数也很好的避免了rm丄丄值统计时的警

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。