sql 语句操作,修改字段中字符串的一部分

UPDATE table
SET answer = REPLACE(answer, 'e', '好')   

将表 table 中answer字段 中e的改为'好"

你可能感兴趣的:(sql语法及服务器)