如何从 phpMyadmin 中的一个表获取 ID 并将其添加到插入时的另一个表字段
我尝试将 id 从一个表添加到另一个表以提供与表的关系。我正在从表单插入数据的许多表上执行此操作。 示例:人员拥有和项目,因此项目具有项目和人员 id 来链接两者,但是在某些情况下,我有可选的表,因此有时这些表的 id 会添加到项目表中,有时会添加到项目表中。留空请参阅上一个有关此问题的问题。在我看来,执行 select 语句从其他表中获取 id,然后更新刚刚插入的字段似乎不是最好的方法。有人对如何做到这一点有更好的想法吗? 谢谢。
I am try to add id from one table to another table to give a relationship to the tables. I am doing this on a number of tables on insert of data from a form. Example: person owns and item so item has item and person ids to link the two, however in some cases I have optional tables so sometimes the ids of those tables will be added to the item table sometimes it will be left null see previous question about this. In my mind doing a select statement to grab ids from other tables then updating the fields that have just been inserted doesn't seem the best way. Anyone got any better ideas on how to do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 mysql_insert_id() 函数,该函数将返回最后插入的记录的 ID。
You can use the mysql_insert_id() function, which will return the id of the last inserted record.