日期:2014-05-16 浏览次数:20431 次
1、添加字段
alter table table_name add column1 type add column2 type add column3 type ... ;
?
2、删除字段
alter table table_name drop column column_name;
3、修改字段
alter table table_name modify (column_name type);