|||
1、删除一列
mysql> alter table 表名 drop 列名;
2、添加一列
2.1 添加一列到表的最后
mysql> alter table 表名 add 列名 column specifications and constraints;
2.2 添加一列到表的开始
mysql> alter table 表名 add 列名 column specifications and constraints first;
2.3 添加一列到某列之后
mysql> alter table 表名 add 列名 column specifications and constraints after 列名;
Archiver|手机版|科学网 ( 京ICP备07017567号-12 )
GMT+8, 2024-12-26 18:26
Powered by ScienceNet.cn
Copyright © 2007- 中国科学报社