相当于 MySQL 中的 SQL Server 函数 SCOPE_IDENTITY()?

PHPz
发布: 2023-09-10 15:49:02
转载
1299 人浏览过

相当于 MySQL 中的 SQL Server 函数 SCOPE_IDENTITY()?

SQL Server 函数 SCOPE_IDENTITY() 相当于 MySQL 中的 LAST_INSERT_ID()。语法如下:

SELECT LAST_INSERT_ID().
登录后复制

这将返回最后插入的记录的 ID。

在这里,我将创建一个带有主键列的表。下面是last_insert_id()的演示。

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

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

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

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() 仅使用原始表,而不使用触发器表内部。

以上是相当于 MySQL 中的 SQL Server 函数 SCOPE_IDENTITY()?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!