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

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

    <tfoot id='HGhl4'></tfoot>
        <legend id='HGhl4'><style id='HGhl4'><dir id='HGhl4'><q id='HGhl4'></q></dir></style></legend>

          <bdo id='HGhl4'></bdo><ul id='HGhl4'></ul>
      1. MySQL 插入查询不适用于 WHERE 子句

        时间:2023-08-19
          <i id='jyjkk'><tr id='jyjkk'><dt id='jyjkk'><q id='jyjkk'><span id='jyjkk'><b id='jyjkk'><form id='jyjkk'><ins id='jyjkk'></ins><ul id='jyjkk'></ul><sub id='jyjkk'></sub></form><legend id='jyjkk'></legend><bdo id='jyjkk'><pre id='jyjkk'><center id='jyjkk'></center></pre></bdo></b><th id='jyjkk'></th></span></q></dt></tr></i><div id='jyjkk'><tfoot id='jyjkk'></tfoot><dl id='jyjkk'><fieldset id='jyjkk'></fieldset></dl></div>

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

            • <tfoot id='jyjkk'></tfoot>

              <legend id='jyjkk'><style id='jyjkk'><dir id='jyjkk'><q id='jyjkk'></q></dir></style></legend>
                <bdo id='jyjkk'></bdo><ul id='jyjkk'></ul>
                  <tbody id='jyjkk'></tbody>
                  本文介绍了MySQL 插入查询不适用于 WHERE 子句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  这个查询有什么问题:

                  INSERT INTO Users( weight, desiredWeight ) VALUES ( 160, 145 ) WHERE id = 1;
                  

                  它可以在没有 WHERE 子句的情况下工作.我似乎忘记了我的 SQL.

                  It works without the WHERE clause. I've seemed to have forgot my SQL.

                  推荐答案

                  MySQL INSERT 语法 不支持 WHERE 子句,因此您的查询将失败.假设您的 id 列是唯一的或主键:

                  MySQL INSERT Syntax does not support the WHERE clause so your query as it stands will fail. Assuming your id column is unique or primary key:

                  如果您尝试插入 ID 为 1 的新行,您应该使用:

                  If you're trying to insert a new row with ID 1 you should be using:

                  INSERT INTO Users(id, weight, desiredWeight) VALUES(1, 160, 145);
                  

                  如果您尝试更改 ID 为 1 的现有行的 weight/desiredWeight 值,您应该使用:

                  If you're trying to change the weight/desiredWeight values for an existing row with ID 1 you should be using:

                  UPDATE Users SET weight = 160, desiredWeight = 145 WHERE id = 1;
                  

                  如果你愿意,你也可以像这样使用 INSERT .. ON DUPLICATE KEY 语法:

                  If you want you can also use INSERT .. ON DUPLICATE KEY syntax like so:

                  INSERT INTO Users (id, weight, desiredWeight) VALUES(1, 160, 145) ON DUPLICATE KEY UPDATE weight=160, desiredWeight=145
                  

                  或者甚至像这样:

                  INSERT INTO Users SET id=1, weight=160, desiredWeight=145 ON DUPLICATE KEY UPDATE weight=160, desiredWeight=145
                  

                  同样重要的是要注意,如果你的 id 列是一个自动增量列,那么你最好从你的 INSERT 中省略它,让 mysql 像往常一样增加它.

                  It's also important to note that if your id column is an autoincrement column then you might as well omit it from your INSERT all together and let mysql increment it as normal.

                  这篇关于MySQL 插入查询不适用于 WHERE 子句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:为什么 MYSQL 较高的 LIMIT 偏移量会减慢查询速度 下一篇:MySQL删除后自动递增

                  相关文章

                  最新文章

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

                    <tfoot id='5wu7f'></tfoot>

                      • <bdo id='5wu7f'></bdo><ul id='5wu7f'></ul>
                    1. <legend id='5wu7f'><style id='5wu7f'><dir id='5wu7f'><q id='5wu7f'></q></dir></style></legend>
                    2. <small id='5wu7f'></small><noframes id='5wu7f'>