需要统计各种交通方式及各自使用的频率,可用如下语句
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
以上是内存溢出为你收集整理的sqlserver 中统计信息语句全部内容,希望文章能够帮你解决sqlserver 中统计信息语句所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)