mysql> alter table a1 change id idname int(20) unsigned not null;
修改表字段属性关键字change,语法:alter table 表名 change 旧字段名称 新字段名称 新字段属性;需要注意地方,unsigned 必须紧跟在int属性后面,否则会提示报错。
mysql> create table a2 ( id int unsigned auto_increment primary key );
auto_increment自增长字段属性特性,要求该字段类型必须为主键(primary key),否则会创建失败。