新建表
create table user(
id int(4) auto_increment primary key comment 'ID',
username varchar(50) not null default '' comment '用户名'
);
新增列
alter table user add age int(3) default 0 comment '年龄' after `username`;
修改列
ALTER TABLE `web_student` CHANGE `age` `age` INT( 2 ) NULL DEFAULT '0' COMMENT '//年龄'
修改表引擎:
ALTER TABLE `web_student` ENGINE = InnoDB