MySQL LAST_INSERT_ID() 函數(shù)用于通過(guò) AUTO_INCRMENT 獲取最近生成的序列號(hào)。
示例
在這個(gè)示例中,我們是創(chuàng)建一個(gè)名為“Student”的表,該表具有 AUTO_INCRMENT 列。我們?cè)凇癗ame”列中插入兩個(gè)值,當(dāng)我們使用 INSERT_LAST_ID() 函數(shù)時(shí),它會(huì)返回最近生成的序列號(hào),即 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)
登錄后復(fù)制
以上就是MySQL LAST_INSERT_ID() 函數(shù)有什么用?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!