MySQL, update multiple tables with one query(MySQL,一次查询更新多张表)
问题描述
我有一个更新三个表的函数,但我使用三个查询来执行此操作.我希望使用更方便的方法进行良好的实践.
I have a function that updates three tables, but I use three queries to perform this. I wish to use a more convenient approach for good practice.
如何使用单个查询更新 MySQL 中的多个表?
How can I update multiple tables in MySQL with a single query?
推荐答案
以两个表为例,Books
和 Orders
.如果我们在 Orders
表中使用 Order.ID = 1002
增加特定订单中的书籍数量,那么我们还需要减少可用书籍的总数我们在 Books
表中的相同数量的库存.
Take the case of two tables, Books
and Orders
. In case, we increase the number of books in a particular order with Order.ID = 1002
in Orders
table then we also need to reduce that the total number of books available in our stock by the same number in Books
table.
UPDATE Books, Orders
SET Orders.Quantity = Orders.Quantity + 2,
Books.InStock = Books.InStock - 2
WHERE
Books.BookID = Orders.BookID
AND Orders.OrderID = 1002;
这篇关于MySQL,一次查询更新多张表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL,一次查询更新多张表


- 在SQL中,如何为每个组选择前2行 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01