添加列:alter table 表名 add column 列名 varchar(30); 删除列:alter table 表名 drop column 列名; -- http://blog.csdn.net/ws84643557/article/details/6939846