日期:2014-05-18 浏览次数:20634 次
update kq set sj=case when datepart(hh,sj)=22 then dateadd(hh,-2,sj) else sj end ------解决方案--------------------你的语句改成这样应该可以
UPDATE kq SET sj = REPLACE(CONVERT(VARCHAR(20),sj,120),'22','20')