清空全部数据,不写日志,不可恢复,速度极快
truncate
table
表名;
清空全部数据,写日志,数据可恢复,速度慢
delete
from
表名
批量替换
update `table` set `column` = replace ( `column`,'想替换的字符串','替换后的字符串') where (condition)
update `table` set `cloumn` = concat('要拼接的字符','字段值')
MySQL 清空表数据 批量替换字段值
清空全部数据,不写日志,不可恢复,速度极快
truncate
table
表名;
清空全部数据,写日志,数据可恢复,速度慢
delete
from
表名
批量替换
update `table` set `column` = replace ( `column`,'想替换的字符串','替换后的字符串') where (condition)
update `table` set `cloumn` = concat('要拼接的字符','字段值')