我正在使用单个表,并且在一个过程中生成了 ProfileID(这是表的主键),现在我想在另一个过程中使用相同的 id 来插入其余的表字段。如何调用生成的 profileID 。查询可能不清楚,但确实欢迎任何形式的帮助
问问题
51 次
1 回答
0
您只需要last_insert_id()
http://dev.mysql.com/doc/refman/5.5/en/information-functions.html#function_last-insert-id
只需看看那里显示的示例。
于 2013-03-20T12:41:18.173 回答