Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
337 views
in Technique[技术] by (71.8m points)

mysql大表如何修改表结构,如增加字段或修改字段类型

一个几千万的innodb表,想要修改其中一个字段的类型,或者增加一个字段,需要怎么操作?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

给 MySQL 大表加字段的思路如下:

  1. 创建一个临时的新表,首先复制旧表的结构(包含索引)

    create table new_table like old_table;

  2. 给新表加上新增的字段

  3. 把旧表的数据复制过来

    insert into new_table(filed1,filed2…) select filed1,filed2,… from old_table

  4. 删除旧表,重命名新表的名字为旧表的名字

需要注意下,执行第三步的时候,可能这个过程也需要时间,这个时候有新的数据进来,所以原来的表如果有字段记录了数据的写入时间就最好了,可以找到执行这一步操作之后的数据,并重复导入到新表,直到数据差异很小。不过还是会可能损失极少量的数据。

所以,如果表的数据特别大,同时又要保证数据完整,最好停机操作。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...