tips

获取最近插入记录的id

insert into xxx values xxx;
select LAST_INSERT_ID() 

只有在插入记录以后查询才能查到,否则全是0

你可能感兴趣的:(tips)