1、批量替换字符串
update 表名 set 字段名 = replace(字段名,'旧字符串','新字符串')
2、插入
insert into 表名('旧字段1','旧字段2') valves ('对应字段数据1','对应字段数据2')
3、更新
update 表名 set 字段名 = '对应字段数'
4、删除(条件:字段名中包含ABC的)
delete from 表名 where 字段名 like '%'+'ABC'+'%'
5、
本文转自 yuxye 51CTO博客,原文链接:http://blog.51cto.com/fishvsfrog/1975207