-- 完全替换
update XXX set NAME = '质控分析' where NAME = '质量分析' 
-- 部分替换
update XXX set NAME = replace( NAME , ' '质量分析'', '质控分析') where NAME like  '%质量分析%'