如何使用用户定义变量为两张表设置不同的自动递增 ID?
为此,可以使用 LAST_INSERT_ID()。首先,让我们创建一个表。在这里,我们已将自动递增 ID 设置为 StudentId 列 −
mysql> create table DemoTable1 (StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY); Query OK, 0 rows affected (0.58 sec)
使用 insert 命令向表中插入一些记录 −
mysql> insert into DemoTable1 values(null); Query OK, 1 row affected (0.18 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable1;
这将产生以下输出 −
+-----------+ | StudentId | +-----------+ | 1 | +-----------+ 1 row in set (0.00 sec)
以下是获取上次插入 ID 的查询。我们已将其设置在用户定义变量中 −
mysql> set @studentId=last_insert_id(); Query OK, 0 rows affected (0.00 sec)
以下是创建第二个表的查询 −
mysql> create table DemoTable2 (Id int); Query OK, 0 rows affected (0.61 sec)
以下是为两个表设置不同自动递增 ID 的查询 −
mysql> insert into DemoTable2 values(@studentId+1); Query OK, 1 row affected (0.13 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable2;
这将产生以下输出 −
+------+ | Id | +------+ | 2 | +------+ 1 row in set (0.00 sec)
广告