作者:赖雨蓉744_128 | 来源:互联网 | 2023-08-20 16:24
修改表altertable创建表db 查看表desc与describe desctable 查看建表语句showcreatetablet1; 修改
修改表 alter table
创建表db
查看表
desc与describe
desc table
查看建表语句show create table t1;
修改表名 alter table t1 rename zcx_user;
增加一个字段(属性)
alter table zcx_user add name varchar(10) not null;
增加一个字段age在name 后面
alter table zcx_user add column age tinyint unsigned after name;
删除一个字段
alter table zcx_user drop column id;
修改一个字段的名称和类型
alter table zcx_user rename birth132 to birthday;
修改名称和类型并改变位置
alter table zcx_user change birthday brith date after age;
总结:alter table zcx_user change t1 int tinyint int after uid;
要改变一个字段位置必须改变数据类型,一些属性。其实改变字段位置没有实际上的意义。