MySQL 中与 SQL Server 函数 SCOPE_IDENTITY() 等效的函数是什么?


在 MySQL 中,与 SQL Server 函数 SCOPE_IDENTITY() 等效的函数是 LAST_INSERT_ID()。语法如下

SELECT LAST_INSERT_ID().

它返回最后插入记录的 id。

此处,我将创建一个带有主键列的表。以下是 last_insert_id() 的演示。

首先,让我们创建两个表。创建第一个表的查询如下

<TestOnLastInsertIdDemo>

mysql> create table TestOnLastInsertIdDemo
   -> (
   -> StudentId int NOT NULL AUTO_INCREMENT,
   -> PRIMARY KEY(StudentId)
   -> );
Query OK, 0 rows affected (0.95 sec)

现在创建第二个表。查询如下

<TestOnLastInsertIdDemo2>

mysql> create table TestOnLastInsertIdDemo2
   -> (
   -> Id int NOT NULL AUTO_INCREMENT,
   -> PRIMARY KEY(Id)
   -> );
Query OK, 0 rows affected (2.79 sec)

使用插入命令在表中插入一些记录。查询如下

mysql> insert into TestOnLastInsertIdDemo2 values(),(),(),(),(),(),(),();
Query OK, 8 rows affected (0.21 sec)
Records: 8 Duplicates: 0 Warnings: 0

现在在表‘TestOnLastInsertIdDemo2’上创建一个触发器。创建表的查询如下

mysql> delimiter //
mysql> create trigger insertingTrigger after insert on TestOnLastInsertIdDemo
   -> for each row begin
   -> insert into TestOnLastInsertIdDemo2 values();
   -> end;
   -> //
Query OK, 0 rows affected (0.19 sec)
mysql> delimiter ;

如果你将记录插入到 TestOnLastInsertIdDemo 表中,则 last_insert_id() 返回 1。插入记录的查询如下

mysql> insert into TestOnLastInsertIdDemo values();
Query OK, 1 row affected (0.31 sec)

使用函数 last_insert_id()。查询如下

mysql> select last_insert_id();

以下是输出

+------------------+
| last_insert_id() |
+------------------+
|                1 |
+------------------+
1 row in set (0.00 sec)

在上面的示例输出中,它给出了 1,因为 last_insert_id() 只使用原始表,而不在触发器表中。

更新于: 2019 年 7 月 30 日

2K+ 浏览量

开启你的职业生涯

通过完成课程获得认证

开始
广告
© . All rights reserved.