SQL语句删除字段中包含的某个字符

2024年11月15日 13:49
有1个网友回答
网友(1):

-- Oracle 
update 表   set 列 = replace (列,'晋','') where 列 like '%晋%'
or 
update 表   set 列 = '晋' ||  列  where 列 not like '%晋%'
-- MySQL
update 表   set 列 = replace (列,'晋','') where 列 like '%晋%'
or 
update 表   set 列 = CONCAT('晋',列) where 列 not like '%晋%'
-- SQLServer
update 表   set 列 = replace (列,'晋','') where 列 like '%晋%'
or 
update 表   set 列 = '晋'+列 where 列 not like '%晋%'