标签:family table null alt drop char 表名 span style
添加一列
alter table 表名 add column 列名 varchar(20) not null;
添加一列在某列的后面
alter table 表名 add column 列名 varchar(20) not null after user1;
添加一列在最前面
alter table 表名 add column 列名 varchar(20) not null first;
删除一列
alter table yusheng drop column def ;
标签:family table null alt drop char 表名 span style
原文地址:https://www.cnblogs.com/Eeexiang/p/9154829.html