mysql添加列,mysql删除列,mysql修改列数据类型 电脑版发表于:2022/4/5 9:53 mysql添加列 ``` alter table Users add column head varchar(64) ``` mysql删除列 ``` alter table Users drop column head ``` **mysql修改列数据类型** alter table 表名称 modify 字段名称 字段类型 [是否允许非空]; ``` alter table Users modify column head char(32) ``` **mysql修改列名与类型:** alter table 表名称 change 字段名称 新字段名称 字段类型 [是否允许非空]; ``` alter table Users change column head myhead char(64) ```