如何在 MySQL 中获取下一个自动增量 ID?
MySQL 有 AUTO_INCREMENT 关键字来执行自动增量。AUTO_INCREMENT 的起始值是 1,这是默认值。对于每条新记录,它将增加 1。
要获取 MySQL 中的下一个自动增量 ID,我们可以使用 来自 MySQL 的 last_insert_id() 函数 或带 SELECT 的 AUTO_INCREMENT。
创建一个表,其中“d”为自动增量。
mysql> create table NextIdDemo -> ( -> id int auto_increment, -> primary key(id) -> ); Query OK, 0 rows affected (1.31 sec)
mysql> insert into NextIdDemo values(1); Query OK, 1 row affected (0.22 sec) mysql> insert into NextIdDemo values(2); Query OK, 1 row affected (0.20 sec) mysql> insert into NextIdDemo values(3); Query OK, 1 row affected (0.14 sec)
要显示所有记录。
mysql> select *from NextIdDemo;
以下是输出。
+----+ | id | +----+ | 1 | | 2 | | 3 | +----+ 3 rows in set (0.04 sec)
我们上面插入了 3 条记录。因此,下一个 ID 必须为 4。
以下是了解下一个 ID 的语法。
SELECT AUTO_INCREMENT FROM information_schema.TABLES WHERE TABLE_SCHEMA = "yourDatabaseName" AND TABLE_NAME = "yourTableName"
以下是查询。
mysql> SELECT AUTO_INCREMENT -> FROM information_schema.TABLES -> WHERE TABLE_SCHEMA = "business" -> AND TABLE_NAME = "NextIdDemo";
以下是显示下一个自动增量 ID 的输出。
+----------------+ | AUTO_INCREMENT | +----------------+ | 4 | +----------------+ 1 row in set (0.25 sec)
广告