欢迎来到MySQL实战第17篇,修炼500篇成为MySQL高手!
1.修改字段类型、字段属性
alter table 表名 modify 字段名称 字段类型【字段属性】【first|after 字段名称】
create table user3(
id int unsigned auto_increment key,
username varchar(5) not null unique,
password char(32) not null,
email varchar(10) not null
);
-- 将用户名字段的类型改为20;
alter table user3 modify username varchar(20) not null unique;
2.修改字段名称、字段类型、字段属性
alter table 表名 change 原字段名称 新字段名称 字段类型 字段属性【first | after 字段名称】
-- 将username 名称改为name
-- 将password 名称改为pwd
alter table user3 change username name varchar(20) not null,change password pwd varchar(32) not null after email;
【财务总监点评】:
(1)modify 只能修改字段的类型和属性。
(2)change 既可以修改字段的名称也可以修改字段的类型和属性。
关注财务总监的数据分析,修炼MySQL,做个懂数据的人!