如何在MySQL中插入语句后获取id

时间:2015-08-14 15:16:56

标签: mysql

我有这样的程序

iframe.contentWindow.location.replace(href)

我需要一些方法来获取user_id,因为user_logins_native在users表的user_id列上有一个外键

1 个答案:

答案 0 :(得分:2)

使用LAST_INSERT_ID()功能:

insert into users(email) values (p_email);
insert into user_logins_native() values(LAST_INSERT_ID(), p_email, p_pass);