在mysql中 int占4个字节,那么对于无符号的int,最大值是2^32-1 = 4294967295
零填充
一般int后面的数字,配合zerofill一起使用才有效。先看个例子:
CREATE TABLE `user` (
`id` int(4) unsigned zerofill NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
注意int(4)后面加了个zerofill,我们先来插入4条数据。
mysql> INSERT INTO `user` (`id`) VALUES (1),(10),(100),(1000);
Query OK, 4 rows affected (0.00 sec)
Records: 4 Duplicates: 0 Warnings: 0
分别插入1、10、100、1000 4条数据,然后我们来查询下:
mysql> select * from user;
+------+
| id
|+------+
| 0001 |
| 0010 |
| 0100 |
| 1000 |
+------+
4 rows in set (0.00 sec)
标签:10,+------+,区别,int,zerofill,mysql,id From: https://www.cnblogs.com/KL2016/p/18022067
通过数据可以发现 int(4) + zerofill实现了不足4位补0的现象,单单int(4)是没有用的。而且对于0001这种,底层存储的还是1,只是在展示的会补0。