CREATE TABLE user_info( id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, username CHAR(20) NOT NULL DEFAULT '', gender TINYINT UNSIGNED NOT NULL DEFAULT 0, weight TINYINT UNSIGNED NOT NULL DEFAULT 0 )ENGINE=MyISAM DEFAULT CHARSET=utf8;
语法:alter table 表名 add 列名 列类型 列属性
alter table user_info add height tinyint unsigned not null default 0;
语法:alter table 表名 drop 列名
alter table user_info drop height;
语法:alter table 表名 add 列名 类型 属性 [默认值] after 指定列名
alter table user_info add height tinyint not null default 0 after username;
语法:alter table 表名 change 旧列名 新列名 类型 属性 默认值
alter table user_info change height shengao smallint not null default 0;
语法:alter table 表名 modify 列名 类型 属性 默认值
alter table user_info modify shengao tinyint not null default 0;
篇幅有限,这一块内容就介绍到这了,大家啥时候需要对mysql数据库列做增删改操作,看这篇就可以了~