想要查询班组的数字合计,(打个比方,这个是没有意义的)
select sum(case when isnumeric(班组)=0 then 0 else cast(班组 as decimal) end) 班组合计 from 部门班组
这是完美的
想要查询班组的数字合计,(打个比方,这个是没有意义的)
select sum(case when isnumeric(班组)=0 then 0 else cast(班组 as decimal) end) 班组合计 from 部门班组
这是完美的
转载于:https://www.cnblogs.com/footmarkofspring/p/9549614.html