我的编程空间,编程开发者的网络收藏夹
学习永远不晚

如何解决mysql多个字段update时错误使用and连接字段的问题

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

如何解决mysql多个字段update时错误使用and连接字段的问题

这篇文章主要介绍了如何解决mysql多个字段update时错误使用and连接字段的问题,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

执行语句一

update spoken set book_id = 2 and unit_id = 14 and article_id = 47409 where id = 284989;

结果为只将book_id字段值更新为0,其他字段都没有更改

mysql> select id,book_id,unit_id,article_id from spoken;

+--------+---------+---------+------------+

| id     | book_id | unit_id | article_id |

+--------+---------+---------+------------+

| 284989 |       5 |      55 |      55555 |

+--------+---------+---------+------------+

1 row in set (0.00 sec)

mysql> update spoken set book_id = 2 and unit_id = 14 and article_id = 47409 where id = 284989;

Query OK, 1 row affected (0.00 sec)

Rows matched: 1  Changed: 1  Warnings: 0

mysql> select id,book_id,unit_id,article_id from spoken;

+--------+---------+---------+------------+

| id     | book_id | unit_id | article_id |

+--------+---------+---------+------------+

| 284989 |       0 |      55 |      55555 |

+--------+---------+---------+------------+

1 row in set (0.00 sec)

 

执行语句二

update spoken set book_id = 2,unit_id = 14,article_id = 47409 where id = 284989;(正常语句)

三个字段值都变更为给定值,

mysql> select id,book_id,unit_id,article_id from spoken;

+--------+---------+---------+------------+

| id     | book_id | unit_id | article_id |

+--------+---------+---------+------------+

| 284989 |       0 |      55 |      55555 |

+--------+---------+---------+------------+

1 row in set (0.00 sec)

mysql> update spoken set book_id = 2,unit_id = 14,article_id = 47409 where id = 284989;          

Query OK, 1 row affected (0.00 sec)

Rows matched: 1  Changed: 1  Warnings: 0

mysql> select id,book_id,unit_id,article_id from spoken;

+--------+---------+---------+------------+

| id     | book_id | unit_id | article_id |

+--------+---------+---------+------------+

| 284989 |       2 |      14 |      47409 |

+--------+---------+---------+------------+

1 row in set (0.00 sec)

 

执行语句三

update spoken set book_id = 2 and unit_id = 14 and article_id = 47409 where id = 284989;

只将第一个字段变更为1

mysql> select id,book_id,unit_id,article_id from spoken;

+--------+---------+---------+------------+

| id     | book_id | unit_id | article_id |

+--------+---------+---------+------------+

| 284989 |       2 |      14 |      47409 |

+--------+---------+---------+------------+

1 row in set (0.00 sec)

mysql> update spoken set book_id = 2 and unit_id = 14 and article_id = 47409 where id = 284989;   

Query OK, 1 row affected (0.00 sec)

Rows matched: 1  Changed: 1  Warnings: 0

mysql> select id,book_id,unit_id,article_id from spoken;

+--------+---------+---------+------------+

| id     | book_id | unit_id | article_id |

+--------+---------+---------+------------+

| 284989 |       1 |      14 |      47409 |

+--------+---------+---------+------------+

1 row in set (0.00 sec)

分析,

1、正常的update语法为语句二,更新多个字段的值,多个字段之间使用逗号“,”分隔。

2、但问题语句一和问题语句三更新多个字段的值使用and ,分隔多个字段;

且语句一将book_id变更为,语句三将book_id变更为1;

一、问题语句一

update spoken set book_id = 2 and unit_id = 14 and article_id = 47409 where id = 284989;

等价于

update spoken set book_id = (2 and unit_id = 14 and article_id = 47409) where id = 284989;

等价于

update spoken set book_id = (2 and (unit_id = 14) and (article_id = 47409)) where id = 284989;

相当于将book_id的值更新为下面语句的值

select 2 and (unit_id = 14) and (article_id = 47409) from spoken where id = 284989;

该语句由三个表达式通过mysql的逻辑运算符and连接

表达式一为:  2

表达式二为:unit_id = 14 (select unit_id = 14 from spoken where id = 284989;)

表达式三为:article_id = 47409 (select article_id = 47409 from spoken where id = 284989;)

由于当时unit_id = 55,article_id=55555

表达一的值为2

表达式二值为0

表达式三的值为0

所以select 2 and (unit_id = 14) and (article_id = 47409) from spoken where id = 284989;

的值为2 and 0 and 0 即为。

即执行语句的结果等价于update spoken set book_id = 0 where id = 284989;

Mysql的逻辑运算

http://www.cnblogs.com/pzk7788/p/6891299.html

逻辑与 ( AND 或 && )

(1) 当所有操作数均为非零值、并且不为 NULL 时,所得值为 1
(2) 当一个或多个操作数为 0 时,所得值为 0 
(3) 其余情况所得值为 NULL

mysql> SELECT 1 AND -1, 1 && 0, 0 AND NULL, 1 && NULL ;
+----------+--------+------------+-----------+
| 1 AND -1  | 1 && 0  | 0 AND NULL | 1 && NULL |
+----------+--------+------------+-----------+
| 1         | 0       | 0           | NULL      |
+----------+--------+------------+-----------+

二、同理可得语句三

2 and unit_id = 14 and article_id = 47409

相当于将book_id的值更新为下面语句的值

select 2 and (unit_id = 14) and (article_id = 47409) from spoken where id = 284989;

该语句由三个表达式通过mysql的逻辑运算符and连接

表达式一为:  2

表达式二为:unit_id = 14 (select unit_id = 14 from spoken where id = 284989;)

表达式三为:article_id = 47409 (select article_id = 47409 from spoken where id = 284989;)

由于当时unit_id = 14,article_id=47409

表达一的值为2

表达式二值为1

表达式三的值为1

所以select 2 and (unit_id = 14) and (article_id = 47409) from spoken where id = 284989;

的值为2 and 1 and 1 即为1。

即执行语句的结果等价于update spoken set book_id = 1 where id = 284989;

额外的问题:

Mysql如果对mysql的数值型如int做匹配时,unit_id字段和14做匹配时

如下三个语句都匹配到结果

select id,book_id,unit_id,article_id from spoken where unit_id=14;

select id,book_id,unit_id,article_id from spoken where unit_id='14';

select id,book_id,unit_id,article_id from spoken where unit_id='14aaa';

(字符串转数值会截取第一个非数字前面的数字)

mysql>  select id,book_id,unit_id,article_id from spoken where unit_id=14;

+--------+---------+---------+------------+

| id     | book_id | unit_id | article_id |

+--------+---------+---------+------------+

| 284989 |       0 |      14 |      47409 |

+--------+---------+---------+------------+

1 row in set (0.00 sec)

mysql> select id,book_id,unit_id,article_id from spoken where unit_id='14';

+--------+---------+---------+------------+

| id     | book_id | unit_id | article_id |

+--------+---------+---------+------------+

| 284989 |       0 |      14 |      47409 |

+--------+---------+---------+------------+

1 row in set (0.00 sec)

mysql> select id,book_id,unit_id,article_id from spoken where unit_id='14aaa';

+--------+---------+---------+------------+

| id     | book_id | unit_id | article_id |

+--------+---------+---------+------------+

| 284989 |       0 |      14 |      47409 |

+--------+---------+---------+------------+

1 row in set, 1 warning (0.00 sec)

 

感谢你能够认真阅读完这篇文章,希望小编分享的“如何解决mysql多个字段update时错误使用and连接字段的问题”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

如何解决mysql多个字段update时错误使用and连接字段的问题

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

在arcgis使用python脚本进行字段计算时是如何解决中文问题的

一、引言在arcgis打开一个图层的属性表,可以对属性表的某个字段进行计算,但是在平常一般都是使用arcgis提供的字段计算器的界面进行傻瓜式的简答的赋值操作,并没有使用到脚本对字段值进行逻辑的操作。由于最近一直在学python脚本,刚好又
2022-06-04

如何解决使用Hybris Commerce User API读取用户信息时电话字段没有返回问题

小编给大家分享一下如何解决使用Hybris Commerce User API读取用户信息时电话字段没有返回问题,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!在使用Hybris Commerce User API读取一个u
2023-06-04

编程热搜

目录