在已知表中添加列、修改列、修改列定义

1)添加列

alter table xxx add column xxx int default 0 comment 'xxx';

指定列的位置可以使用关键字:FIRST、AFTER

FIRST表示将列添加为表中的第一个,AFTER表示将列添加到某个列之后。没有before一说。

2)修改列名

alter table xxx change column old_xxx new_xxx int default 1 comment 'xxx'

3)修改列定义

alter table xxx modify column xxx int default 1 comment 'xxx';

4)删除一列

alter table xxx drop column xxx;

posted @ 2022-01-25 17:37  江湖凶险  阅读(157)  评论(0编辑  收藏  举报