如何从 phpMyadmin 中的一个表获取 ID 并将其添加到插入时的另一个表字段

发布于 2024-08-29 17:50:44 字数 355 浏览 0 评论 0原文

我尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Hello爱情风 2024-09-05 17:50:44

您可以使用 mysql_insert_id() 函数,该函数将返回最后插入的记录的 ID。

You can use the mysql_insert_id() function, which will return the id of the last inserted record.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文