MySQL中的INT(7)是什么意思?

在INT(7)中,数字表示显示宽度。它不会影响存储,因为我们知道int占用4个字节。它的范围是-2147483648和2147483647。

为了理解INT(7),让我们创建一个带有zerofill列的表。创建表的查询如下-

mysql> create table DisplayInt
-> (
-> Number int(7) zerofill
-> );

使用insert命令在表中插入一些记录。查询如下-

mysql> insert into DisplayInt values(1);

mysql> insert into DisplayInt values(12);

mysql> insert into DisplayInt values(1234);

mysql> insert into DisplayInt values(12345);

mysql> insert into DisplayInt values(1234567);

使用select语句显示表中的所有记录。查询如下。

mysql> select *from DisplayInt;

以下是输出。

+--------+
| Number |
+--------+
| 0000001 |
| 0000012 |
| 0001234 |
| 0012345 |
| 1234567 |
+--------+
5 rows in set (0.00 sec)