需要统计各种交通方式及各自使用的频率,可用如下语句
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
本文介绍了一种使用SQL查询来统计不同交通方式使用频率的方法。通过CASE WHEN语句针对不同的交通工具代码进行计数,实现了对火车、长途汽车、公交车、服务车以及其他交通方式的数据统计。
7013

被折叠的 条评论
为什么被折叠?



