日期:2014-05-16  浏览次数:20898 次

mysql 设置默认值
alter table tablename drop column cloumnname;


alter table tablename add column columnname integer default value;

?mysql中表建好后,无法用命令行直接设置自动的默认值,所以只能先删除掉某列后,再重新添加该列,同时设置默认值