MySQL LAST_INSERT_ID()用法
last_insert_id()函数是适用于id为自动生成的表
下面是插入表数据时last_insert_id()函数的两种用法:
表结构:
此表使用last_insert_id()函数的字段为parentId(父节点);
parentId取值特点:
1)levelId节点为'0'时parentId为空;
2)levelId节点为'1'时parentId取levelId节点为'0'数据的autoId;
3)levelId节点为'2'时parentId取levelId节点为'1'数据的autoId;
1、插入的数据是逐条插入
如:
INSERT INTO sn_app_label (app_code, apply_id, apply_name, level_id, parent_id , state, operation_time) VALUES ('SNSC', 'G001', '门店属性标签', '0', '' , '0', '2018-06-15 00:00:00'); INSERT INTO sn_app_label (app_code, apply_id, apply_name, level_id, parent_id , state, operation_time) VALUES ('SNSC', '001', '门店类型', '1', (SELECT LAST_INSERT_ID()) , '0', '2018-06-15 00:00:00'); INSERT INTO sn_app_label (app_code, apply_id, apply_name, level_id, parent_id , state, operation_time) VALUES ('SNSC', '1', '门店类型', '2', (SELECT LAST_INSERT_ID()) , '0', '2018-06-15 00:00:00'); INSERT INTO sn_app_label (app_code, apply_id, apply_name, level_id, parent_id , state, operation_time) VALUES ('SNSC', '2', '门店类型', '2', (SELECT a.parent_id FROM (SELECT parent_id FROM sn_app_label WHERE app_code = 'SNSC' AND auto_id in (SELECT LAST_INSERT_ID())) a) , '0', '2018-06-15 00:00:00');
上面sql可以看到:第一条数据level_id节点为'0',parent_id为空;第二条数据level_id节点为'1',此时parent_id应为第一条数据的auto_id,直接使用sql:select last_insert_id()查询上一条数据的auto_id;第三条数据同第二条;有sql可以看出第四条数据和第三条数据是在同一节点,使用select last_insert_id()查出第三条数据auto_id,再根据auto_id查询第三条的parent_id即可,因为第四条和第三条的parent_id值是一致的。select last_insert_id()查询i结果是集合,故在使用select last_insert_id()结果当做查询条件时使用in()。
上述sql执行结果为:
2、批量插入
如:
INSERT INTO sn_app_label (app_code, apply_id, apply_name, level_id, parent_id , state, operation_time) VALUES ('SNSC', 'G001', '门店属性标签', '0', '' , '0', '2018-06-15 00:00:00'), ('SNSC', '001', '门店类型', '1', (SELECT LAST_INSERT_ID()) , '0', '2018-06-15 00:00:00'), ('SNSC', '1', '门店类型', '2', (SELECT LAST_INSERT_ID()) , '0', '2018-06-15 00:00:00'), ('SNSC', '2', '门店类型', '2', (SELECT a.parent_id FROM (SELECT parent_id FROM sn_app_label WHERE app_code = 'SNSC' AND auto_id in (SELECT LAST_INSERT_ID())) a) , '0', '2018-06-15 00:00:00');
sql执行结果:
有执行结果可以看出:select last_insert_id()的结果为之前插入最后一条数据的auto_id,所以第6、7行中parent_id显示的是第四行的auto_id,第8行的parent_id为第四行中的parent_id。
总结:id为自动生成的表;多条语句插入时last_insert_id()获取的是最近一次insert的auto_id;一条语句插入多个值时last_insert_id()获取的也是最近一次insert的auto_id,而不是该批量插入的最近一次intert的auto_id。