SQL Server 函數(shù) SCOPE_IDENTITY() 相當于 MySQL 中的 LAST_INSERT_ID()。語法如下:
SELECT LAST_INSERT_ID().
登錄后復制
這將返回最后插入的記錄的 ID。
在這里,我將創(chuàng)建一個帶有主鍵列的表。下面是last_insert_id()的演示。
首先,讓我們創(chuàng)建兩個表。創(chuàng)建第一個表的查詢如下:
mysql> create table TestOnLastInsertIdDemo -> ( -> StudentId int NOT NULL AUTO_INCREMENT, -> PRIMARY KEY(StudentId) -> ); Query OK, 0 rows affected (0.95 sec)
登錄后復制
現(xiàn)在創(chuàng)建第二個表。查詢如下:
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
登錄后復制
現(xiàn)在在表“TestOnLastInsertIdDemo2”上創(chuàng)建一個觸發(fā)器。創(chuàng)建表的查詢如下:
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)
登錄后復制
使用函數(shù)last_insert_id()。查詢如下:
mysql> select last_insert_id();
登錄后復制
以下是輸出:
+------------------+ | last_insert_id() | +------------------+ | 1 | +------------------+ 1 row in set (0.00 sec)
登錄后復制
在上面的示例輸出中,它給出 1,因為 last_insert_id() 僅使用原始表,而不使用觸發(fā)器表內部。
以上就是相當于 MySQL 中的 SQL Server 函數(shù) SCOPE_IDENTITY()?的詳細內容,更多請關注www.92cms.cn其它相關文章!