MySQL 中 BIGINT 和 BIGINT(20) 的区别是什么?
BIGINT 和 BIGINT(20) 之间的唯一区别在于显示宽度。20 可用于显示宽度。
我们来看一个例子并创建一个表。这里,我们设置了 BIGINT(20) -
mysql> create table DemoTable ( Number bigint(20) zerofill ); Query OK, 0 rows affected (0.58 sec)
使用 insert 命令在表中插入一些记录 -
mysql> insert into DemoTable values(1); Query OK, 1 row affected (0.08 sec) mysql> insert into DemoTable values(12); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable values(123); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values(1234); Query OK, 1 row affected (0.11 sec)
使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable;
这会产生以下输出。宽度现在为 20,因此数字会扩展并可见,如下所示 -
+----------------------+ | Number | +----------------------+ | 00000000000000000001 | | 00000000000000000012 | | 00000000000000000123 | | 00000000000000001234 | +----------------------+ 4 rows in set (0.00 sec)
广告