MySQL zerofill 的用法

  creata table t(x int(6) zerofill,y int);

  insert into t(x,y) values(1,1);

  select x,y from t;

  

原文地址:https://www.cnblogs.com/JiangLe/p/4391760.html