日期:2014-05-18  浏览次数:20518 次

去掉前导0
01
002
0003333A
怎么去掉前面的所有0呢?

------解决方案--------------------
SQL code

update tb
set col = stuff(col,1,patindex('%[^0]%',col)-1,'')
where left(col,1) = 0