加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

sqlserver 中统计信息语句

发布时间:2020-12-12 14:54:31 所属栏目:MsSql教程 来源:网络整理
导读:? 需要统计各种交通方式及各自使用的频率,可用如下语句 SELECT 'train'=count(case tripmode when '0' then tripmode else null END), ?'coach'=count(case tripmode when '1' then tripmode else null END), ?'bus'=count(case tripmode when '2' then trip
?

需要统计各种交通方式及各自使用的频率,可用如下语句

SELECT 'train'=count(case tripmode when '0' then tripmode else null END),
?'coach'=count(case tripmode when '1' then tripmode else null END),
?'bus'=count(case tripmode when '2' then tripmode else null END),
?'servecar'=count(case tripmode when '3' then tripmode else null END)
?,
?'other'=count(case tripmode when '4' then tripmode else null END)

?--统计函数
?FROM ServiceWarrantyForm swf
?WHERE swf.tripmode IS NOT NULL AND swf.agenttree=@agentTree AND swf.gotodestinationtime>=@starttime AND
?swf.endservicetime<=@endtime

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读