设置 MySQL 主键自增为无限(或难以置信的巨大)?
你可以使用 BIGINT,但这并不是无限的,但是你可以用它来使用大量的自增主键。语法如下 −
yourColumnName BIGINT NOT NULL AUTO_INCREMENT;
为了理解上述语法,让我们创建一个表。创建表的查询如下 −
mysql> create table LargeAutoIncrement -> ( -> Id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY -> ); Query OK, 0 rows affected (0.78 sec)
现在, 在这个表中, 您可以存储 9223372036854775807 这样的大的数字, 即用于自增主键。
使用插入命令在表中从 9223372036854775805 开始插入记录。查询如下。我们只会插入第一个值, 其余留空, 因为自增会自动插入值 −
mysql> insert into LargeAutoIncrement values(9223372036854775805); Query OK, 1 row affected (0.19 sec) mysql> insert into LargeAutoIncrement values(); Query OK, 1 row affected (0.81 sec) mysql> insert into LargeAutoIncrement values(); Query OK, 1 row affected (0.16 sec)
现在, 您可以使用 select 语句显示表中的所有记录。查询如下 −
mysql> select *from LargeAutoIncrement;
下面是自增后的输出 −
+---------------------+ | Id | +---------------------+ | 9223372036854775805 | | 9223372036854775806 | | 9223372036854775807 | +---------------------+ 3 rows in set (0.00 sec)
广告