_INSERT_ID()MySQL我有一个MySQL问题,我认为这个问题一定很简单。在运行以下MySQL查询时,需要从表1返回最后插入的ID:INSERT INTO table1 (title,userid) VALUES ('test',1); INSERT INTO table2 (parentid,otherid,userid) VALUES (LAST_INSERT_ID(),4,1);SELECT LAST_INSERT_ID();正如您所理解的,当前代码将只返回表2的最后一个插入ID,而不是表1,即使在表2之间插入到表2中,我如何从表1获得id?
3 回答
开满天机
TA贡献1786条经验 获得超13个赞
INSERT INTO table1 (title,userid) VALUES ('test', 1); SET @last_id_in_table1 = LAST_INSERT_ID();INSERT INTO table2 (parentid,otherid,userid) VALUES (@last_id_in_table1, 4, 1);
INSERT INTO table1 (title,userid) VALUES ('test', 1); INSERT INTO table2 (parentid,otherid,userid) VALUES (LAST_INSERT_ID(), 4, 1); SELECT MAX(id) FROM table1;
添加回答
举报
0/150
提交
取消