字段的修改、添加和删除
create table tf1(
id int primary key auto_increment,
x int,
y int
);
#修改
alter table tf1 modify x char(4) default'';
alter table tf1 change y m char(4) default '';
#增加
alter table 表名 add 字段名 类型[(长度) 约束];
>:alter table student add name char(4) first;
>:alter table student add age int unsigned after name;
#删除
alter table 表名 drop 字段名;
>: alter table student drop age;create table tf1(
id int prim