修改字段:alter table 表名 change[modify] 被修改后的字段信息 (修改记得必须要写属性值) 其中:change可以修改字段名, modify 不修改 -- 修改user表中age字段信息(类型),(使用modify关键字的目的不修改字段名) mysql> alter table user modify age tinyint unsigned not null default 20; -- 修改user表的num字段改为mm字段并添加了默认值(使用change可以改字段名) mysql> alter table user change num mm int not null default 10;