本文共 285 字,大约阅读时间需要 1 分钟。
1、批量替换字符串
update 表名 set 字段名 = replace(字段名,'旧字符串','新字符串')
2、插入
insert into 表名('旧字段1','旧字段2') valves ('对应字段数据1','对应字段数据2')
3、更新
update 表名 set 字段名 = '对应字段数'
4、删除(条件:字段名中包含ABC的)
delete from 表名 where 字段名 like '%'+'ABC'+'%'
5、
转载地址:http://issnl.baihongyu.com/