使用示例
增加字段:
alter table t_order add column order_sum int(10) NOT NULL DEFAULT 100;
修改字段:
alter table t_order modify column order_sum int(10) NOT NULL DEFAULT 200;
删除字段:
alter table t_order drop order_sum;
创建表:
create table employee( id int not null,primary key (id))engine=innodb default charset=utf8;