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)
热门推荐
10 对患者生日祝福语简短
11 结婚祝福语简短装备
12 周岁祝福语学生文案简短
13 订婚领证祝福语简短精辟
14 导师获奖祝福语大全简短
15 新婚购房祝福语简短精辟
16 牛年祝福语简短的爱人
17 送芒果的祝福语简短
18 送给学长毕业祝福语简短