表操作
增加字段 alter table student add phone varchar(50) not null;
删除字段 alter table student drop phone ;
更改字段名 alter table student change 旧字段 新字段 varchar(20) not null;
修改类型 alter table student modify 字段名 新类型varchar(10);
修改表编码 alter table a character set utf8mb4;
mysql常用表操作
最新推荐文章于 2024-08-15 16:05:29 发布