mysql中补零操作 不补零的情况下: create table test (a int(5),b int(10)); insert into test values(1,1); select * from test; 补零的情况下: create table test (a int(5) zerofill,b int(10) zerofill); insert into test values(1,1); select * from test;