int类型保留前面的0

mysql> create table test_num(id int(6) zerofill);
Query OK, 0 rows affected (0.20 sec)

mysql> insert into test_num values(203);
Query OK, 1 row affected (0.02 sec)

mysql> select * from test_num;
+--------+
| id     |
+--------+
| 000203 |
+--------+
1 row in set (0.00 sec)

你可能感兴趣的:(int类型保留前面的0)