环境
MySQL 5.1 + 命令行工具
问题
MySQL修改字段允许为空
解决
alter table topic modify state int(4) null;
语法总结
alter table表名 modify字段名字段类型(长度) null;
MySQL 5.1 + 命令行工具
MySQL修改字段允许为空
alter table topic modify state int(4) null;
alter table表名 modify字段名字段类型(长度) null;
转载于:https://my.oschina.net/u/1866821/blog/634700