MySql表字段修改记录
约 142 字小于 1 分钟
mysql修改表数据类型的方式
- 针对一个已经存在的列,修改类型,主要使用
modify
alter table xxx modify id int(11) unsigned not null auto_increment comment '主键id'
- 如果是希望新增一列,使用
add column
-- after 表示这个新增的列在id这一列之后
alter table xxx add column to_add varchar(11) not null default '' comment '新增的列' after `id`;
- 删除某一列,使用
drop column
-- 删除 xxx 这一列
alter table drop column xxx;
Loading...