MySQL LAST_INSERT_ID() 函数有什么用?


MySQL LAST_INSERT_ID() 函数用于获取 AUTO_INCREMENT 生成的最近序列号。

示例

在这个示例中,我们创建一个名为“Student”的表,其中有一个 AUTO_INCREMENT 列。我们在“Name”列中插入了两个值,当我们使用 INSERT_LAST_ID() 函数,它会返回最近生成的序列号,即 2。

mysql> Create table Student(Id INT PRIMARY KEY NOT NULL AUTO_INCREMENT, Name Varchar(5));
Query OK, 0 rows affected (0.13 sec)

mysql> Insert into student(Name) Values('Raman');
Query OK, 1 row affected (0.06 sec)

mysql> Insert into student(Name) Values('Rahul');
Query OK, 1 row affected (0.07 sec)

mysql> Select* from student;
+----+-------+
| Id | Name |
+----+-------+
| 1 | Raman |
| 2 | Rahul |
+---+-------+
2 rows in set (0.00 sec)

mysql> Select Last_insert_id();
+------------------+
| Last_insert_id() |
+------------------+
|                2 |
+------------------+
1 row in set (0.00 sec)

更新于:2020 年 6 月 20 日

232 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告