• <i id='Wx0BS'><tr id='Wx0BS'><dt id='Wx0BS'><q id='Wx0BS'><span id='Wx0BS'><b id='Wx0BS'><form id='Wx0BS'><ins id='Wx0BS'></ins><ul id='Wx0BS'></ul><sub id='Wx0BS'></sub></form><legend id='Wx0BS'></legend><bdo id='Wx0BS'><pre id='Wx0BS'><center id='Wx0BS'></center></pre></bdo></b><th id='Wx0BS'></th></span></q></dt></tr></i><div id='Wx0BS'><tfoot id='Wx0BS'></tfoot><dl id='Wx0BS'><fieldset id='Wx0BS'></fieldset></dl></div>
      <tfoot id='Wx0BS'></tfoot>
        <bdo id='Wx0BS'></bdo><ul id='Wx0BS'></ul>

      <legend id='Wx0BS'><style id='Wx0BS'><dir id='Wx0BS'><q id='Wx0BS'></q></dir></style></legend>

        <small id='Wx0BS'></small><noframes id='Wx0BS'>

      1. MySQL,一次查询更新多张表

        时间:2023-08-19

          <i id='PMHdy'><tr id='PMHdy'><dt id='PMHdy'><q id='PMHdy'><span id='PMHdy'><b id='PMHdy'><form id='PMHdy'><ins id='PMHdy'></ins><ul id='PMHdy'></ul><sub id='PMHdy'></sub></form><legend id='PMHdy'></legend><bdo id='PMHdy'><pre id='PMHdy'><center id='PMHdy'></center></pre></bdo></b><th id='PMHdy'></th></span></q></dt></tr></i><div id='PMHdy'><tfoot id='PMHdy'></tfoot><dl id='PMHdy'><fieldset id='PMHdy'></fieldset></dl></div>
              <tbody id='PMHdy'></tbody>
          1. <legend id='PMHdy'><style id='PMHdy'><dir id='PMHdy'><q id='PMHdy'></q></dir></style></legend>

              • <bdo id='PMHdy'></bdo><ul id='PMHdy'></ul>
              • <tfoot id='PMHdy'></tfoot>

                <small id='PMHdy'></small><noframes id='PMHdy'>

                  本文介绍了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?

                  推荐答案

                  以两个表为例,BooksOrders.如果我们在 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,一次查询更新多张表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:计算字符串在 VARCHAR 字段中出现的次数? 下一篇:MySQL:无法创建表(错误号:150)

                  相关文章

                  最新文章

                    <small id='Tjfwp'></small><noframes id='Tjfwp'>

                    <legend id='Tjfwp'><style id='Tjfwp'><dir id='Tjfwp'><q id='Tjfwp'></q></dir></style></legend>
                      <tfoot id='Tjfwp'></tfoot>
                      <i id='Tjfwp'><tr id='Tjfwp'><dt id='Tjfwp'><q id='Tjfwp'><span id='Tjfwp'><b id='Tjfwp'><form id='Tjfwp'><ins id='Tjfwp'></ins><ul id='Tjfwp'></ul><sub id='Tjfwp'></sub></form><legend id='Tjfwp'></legend><bdo id='Tjfwp'><pre id='Tjfwp'><center id='Tjfwp'></center></pre></bdo></b><th id='Tjfwp'></th></span></q></dt></tr></i><div id='Tjfwp'><tfoot id='Tjfwp'></tfoot><dl id='Tjfwp'><fieldset id='Tjfwp'></fieldset></dl></div>

                        <bdo id='Tjfwp'></bdo><ul id='Tjfwp'></ul>