creata table t(x int(6) zerofill,y int);
insert into t(x,y) values(1,1);
select x,y from t;
本文共 151 字,大约阅读时间需要 1 分钟。
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