在列中使用zerofill,如果该列数据类型为int(4),插入1,显示0001;如果插入55555,显示也是55555;插入负数显示为0000。因为MySQL自动增加UNSIGNED属性 UNSIGNED不能为负数,当插入负数时就显示0。
#注意:column 紧跟两个age
alter table mchopin change column age age int(11) unsigned zerofill;
在列中使用zerofill,如果该列数据类型为int(4),插入1,显示0001;如果插入55555,显示也是55555;插入负数显示为0000。因为MySQL自动增加UNSIGNED属性 UNSIGNED不能为负数,当插入负数时就显示0。
#注意:column 紧跟两个age
alter table mchopin change column age age int(11) unsigned zerofill;