Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的数据库中有 3 个表:
Posts: -id -title -body -date Tags: -id -title Posts_Tags: -id -post_id -tag_id
当用户插入帖子时,我的 php 代码会执行 2 个查询:
这是正确的方法吗?
有没有办法简化或做 1 个单一的查询?
如果您将其放入事务(原子操作)中,则方法是否正确;也就是说,如果您插入一个帖子并且标签插入(或标签关联插入)有错误,那么帖子也不会被插入
在 xRobot 发表评论后,我用这个更新了我的答案