修改表中列
Posted jwdd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改表中列相关的知识,希望对你有一定的参考价值。
修改列名
alter table 表名 rename column 旧列名 to 新列名;
修改列类型
alter table 表名 modify (列名varchar(255));
删除表某一列
alter table 表名 drop column 列名
给表增加一列
alter table 表名 add 列名 类型 default 值 < not null>;
以上是关于修改表中列的主要内容,如果未能解决你的问题,请参考以下文章