日期:2014-05-18 浏览次数:20550 次
update tb set iscommon=case when times>=2 then true when times<2 then false else NULL END ------解决方案--------------------
;with t as ( --你的统计语句 ) update t set iscommon=case when times>=2 then 'true' else 'false' end