添加字段
alter table test add name char(10);
删除字段
alter table test drop name;
修改字段
alter table test modify age int not null dafault 10;
修改字段名
alter table test change 旧字段 新字段 字段类型;
mysql学习(3)修改字段
最新推荐文章于 2024-07-28 02:53:30 发布
添加字段
alter table test add name char(10);
删除字段
alter table test drop name;
修改字段
alter table test modify age int not null dafault 10;
修改字段名
alter table test change 旧字段 新字段 字段类型;