mysql不需要拷贝表的三种DDL
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql不需要拷贝表的三种DDL相关的知识,希望对你有一定的参考价值。
我们知道mysql5.6才支持部分的online ddl,但是以下三种ddl的写法是不需要拷贝表的:
字段注释
alter table testtable change testcolumn testcolumn int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT ‘修改后的字段的注释‘;
表注释
alter table testtable comment ‘修改后的表的注释‘;
修改默认值
alter table testtable alter column testcolumn set default 0;
以上是关于mysql不需要拷贝表的三种DDL的主要内容,如果未能解决你的问题,请参考以下文章