日期:2014-05-18 浏览次数:20544 次
update 表 SET 编号 = substring(编号, 1, charindex('-', 编号)-1)
------解决方案--------------------
SELECT STUFF(编号,CHARINDEX('-',编号),LEN(编号),'') FROM tb
------解决方案--------------------
--1 update 表 SET 编号 = substring(编号, 1, charindex('-', 编号)-1) --2 update 表 SET 编号 = left(编号, charindex('-', 编号)-1) where charindex('-',编号)>0