1、批量替换字符串update 表名 set 字段名 = replace(字段名,'旧字符串','新字符串') 2、插入insert into 表名('旧字段1','旧字段2') valves ('对应字段数据1','对应字段数据2')3、更新update 表名 set 字段名 = '对应字段数'4、删除(条件:字段名中包含ABC的)delete from 表名 where 字段名 li
1.复制创建表 select into from 标准sql: select * into new_table from old_table; 上面这种方式,mysql并不支持,mysql需要使用如下语句复制创建存在的表: Create table new_table (Select * from old_table); 说明:new_table可以不存在2.复制表insert into from