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()?的详细内容。