MySQL zerofill 的用法时间:2022-01-03 23:33:35 creata table t(x int(6) zerofill,y int); insert into t(x,y) values(1,1); select x,y from t;