Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MySQL

คุณจะทราบได้อย่างไรว่า MySQL AUTO_INCREMENT กำหนดหมายเลขลำดับใดเมื่อเร็วๆ นี้


ฟังก์ชัน Last_Insert_Id() MySQL ถูกใช้เพื่อค้นหาว่า AUTO_INCREMENT ได้กำหนดหมายเลขลำดับใดเมื่อเร็วๆ นี้

ตัวอย่าง

mysql> Create table Employee(Id INT PRIMARY KEY NOT NULL AUTO_INCREMENT, Name Varchar(5));
Query OK, 0 rows affected (0.13 sec)

mysql> Insert into Employee(Name) Values('Harvinder');
Query OK, 1 row affected (0.06 sec)

mysql> Insert into Employee(Name) Values('Suresh');
Query OK, 1 row affected (0.07 sec)

mysql> Select* from Employee;
+----+---------+
| Id | Name    |
+----+---------+
| 1  |Harvinder|
| 2  | Suresh  |
+----+---------+
2 rows in set (0.00 sec)

mysql> Select Last_insert_id();
+------------------+
| Last_insert_id() |
+------------------+
|                2 |
+------------------+
1 row in set (0.00 sec)