大表加字段方法
第一,基础方法
增加字段基本方法,该方法适合十几万的数据量,可以直接进行加字段操作。
ALTER TABLE tbl_tpl ADD title(255) DEFAULT '' COMMENT '标题' AFTER id;
但是,线上的一张表如果数据量很大,执行加字段操作就会锁表,这个过程可能需要很长时间甚至导致服务崩溃,那么这样操作就有风险。
第二,临时表方法
思路如下:
① 创建一个临时的新表,首先复制旧表的结构(包含索引)
create table new_table like old_table;
② 给新表加上新增的字段,注意,此时新表是空表,加字段很快;
③ 把旧表的数据复制过来
insert into new_table(filed1,filed2…) select filed1,filed2,… from old_table
④ 删除旧表,重命名新表的名字为旧表的名字
drop table old_table; alter table new_table rename old_table;
不过这里需要注意,执行第三步的时候,可能这个过程也需要时间,这个时候有新的数据进来,所以原来的表如果有字段记录了数据的写入时间就最好了,可以找到执行这一步操作之后的数据,并重复导入到新表,直到数据差异很小。不过还是会可能损失极少量的数据。
所以,如果表的数据特别大,同时又要保证数据完整,最好停机操作。
第三,从库加,主从切换
1.在从库进行加字段操作,然后主从切换;
2.使用第三方在线改字段的工具。
大表加索引:
create table to_pub_user_new like to_pub_user; create index idx_pub_user_delete_flag on to_pub_user_new (delete_flag); insert into to_pub_user_new select * from to_pub_user; drop table to_pub_user; alter table to_pub_user_new rename to_pub_user;