希望对字段中的内容进行替换。
比如说将 email 中字段中的 .com 替换为 .org
例如可以用下面的语句:update yourtable set email = replace(email, '.com', '.org')
update yourtable set email = replace(email, '.com', '.org')