mysql获得自增主码的值

主码设置为自增,但之后又需要自增主码,怎样获得呢?

利用 last_insert_id() ,返回表中最后的自增id

这样使用即可

select last_insert_id();

 mysql获得自增主码的值