sqlserver 中统计信息语句

sqlserver 中统计信息语句,第1张

概述  需要统计各种交通方式及各自使用的频率,可用如下语句 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 whe  

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

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 中统计信息语句所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1180406.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存