一、增加字段
alter table students add IsImportJcxx int set default 0 COMMENT '是否導入基礎信息平臺 1 是導入';
二、刪除字段
alter table `provincestudentinfo` drop column NativePlace;
?三、創建表
CREATE TABLE `表名` ( `IconId` int not null auto_increment, `字段名` int comment '字段說明', primary key (`IconId`) )ENGINE=InnoDB DEFAULT CHARSET=utf8;
?