侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

mysql不需要拷贝表的三种DDL

2024-05-08 星期三 / 0 评论 / 0 点赞 / 61 阅读 / 472 字

我们知道mysql5.6才支持部分的online ddl,但是以下三种ddl的写法是不需要拷贝表的:字段注释alter table testtable change testcolumn testco

我们知道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;

广告 广告

评论区