MySQL具有AUTO_INCREMENT关键字来执行自动增量。AUTO_INCREMENT的起始值为1,这是默认值。每条新记录将增加1。
要获得MySQL中的下一个自动增量ID,我们可以使用MySQL中的函数last_insert_id()或带有SELECT的auto_increment。
创建一个表,其中“ id”为自动增量。mysql> create table NextIdDemo
-> (
-> id int auto_increment,
-> primary key(id)
-> );
将记录插入表中。mysql> insert into NextIdDemo values(1);
mysql> insert into NextIdDemo values(2);
mysql> insert into NextIdDemo values(3);
显示所有记录。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";
这是显示下一个自动增量的输出。+----------------+
| AUTO_INCREMENT |
+----------------+
| 4 |
+----------------+
1 row in set (0.25 sec)