mySQL - 插入三个表
我最近问了这个问题。
<块引用>我有一个包含三个表的关系数据库。第一个包含 id 与第二个相关的。第二个 包含与以下内容相关的 id 第三。第三个包含结果 我在追。
是否可以通过单个查询来 查询第一个表中的 id 给出第三个表的所有结果 与此相关?
我选择的解决方案是:
从表 1 t1 中选择 * 连接表 2 t2 在 t1.t2ref = t2.id 上加入 table3 t3 t2.t3ref = t3.id
添加要搜索的 where 子句 表1中的某些行
其中 t1.field = '值'
我的新问题是:
我意识到我也需要插入到这三个表中。我正在处理的是一个预订系统。是否可以编写一个查询,在查询三个表后直接插入它们(使用联接?)。
我还有另一个考虑因素是我应该使用事务来确保两个查询同时运行...两者都发现 id 是“未保留的”,然后导致重复预订还是有更简单的方法?
I recently asked this question.
I have a relational database with three tables. The first containts id's
that relate to the second. The second
contains id's that relate to the
third. The third contains the results
I am after.Is it possible with a single query to
query an id in the first table which
gives all results from the third table
that relate to it?
My chosen solution was:
select * from table1 t1 join table2 t2
on t1.t2ref = t2.id join table3 t3 on
t2.t3ref = t3.idAdd a where clause to search for
certain rows in table1where t1.field = 'value'
My new question is:
I have realised that I need to insert into the three tables too. What I am dealing with is a reservation system. Is it possible to write a query that inserts into three tables directly after it queries them (using joins?).
Also another consideration I have is should I use transactions to ensure that two queries are run at the same time... both find that the id's are 'unreserved' and then resulting in a double booking or is there a more simple way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您绝对应该在事务中执行三个插入操作。我可能会编写一个存储过程来处理插入。
编辑:
这是带有事务的存储过程的示例。请注意使用 LAST_INSERT_ID() 来获取先前插入的记录的 ID。这只是两个表,但您应该能够将其扩展到三个表。
你这样称呼它:
You should definitely do the three inserts in a transaction. I would probably write a stored procedure to handle the inserts.
EDIT:
Here is an example of a stored procedure with a transaction. Note the use of LAST_INSERT_ID() to get the ID of the previously inserted record. This is only two tables, but you should be able to extend it to three tables.
And you call it like so:
您无法使用一个查询插入多个表,您必须将其分解为多个查询。
You can't insert into multiple tables with one query, You'll have to break it up to multiple queries.
执行多个更新时始终使用事务。如果一次更新失败,您将需要回滚之前成功的更新,这样就不会违反关系模型的任何非强制约束。
You always use transactions when performing multiple updates. If one update fails you will want to roll back previous successful updates so you don't violate any unenforced constraints of the relational model.