gpt4 book ai didi

mysql - 无法更新 MySQL 中的表,我正在使用工作台

转载 作者:行者123 更新时间:2023-11-29 08:57:38 24 4
gpt4 key购买 nike

尽管我对 SQL(DB2 环境)相当有经验,但我还是 MySQL 的新手。我正在使用工作台运行查询和更新语句。我在更新表中的数据时遇到问题,而我之前已经能够做到这一点。我可以选择行,但是当我根据相同的条件进行更新时,返回消息是:

**0 row(s) affected Rows matched: 9 Changed: 0 Warnings: 0**

Update gina1.proj001_bcbs set contract_percentage = 1.50

where contract_category = 'All Other Services'
and doctor = 'JSmith' ;

When I run the same WHERE clause with a select I get the correct list of records.

**9 row(s) returned** and I get the correct list of data.

select * from gina1.proj001_bcbs

where contract_category = 'All Other Services'
and doctor = 'JSmith' ;

我不相信我正在记录,但我不能肯定地说,我确实准备好重置日志。如果有人能提供帮助那就太好了。

最佳答案

这意味着所有相关记录都已具有 contract_percentage = 1.50

  • 0 行受影响:没有行受到您的查询的影响
  • 匹配行数:9:找到 9 行,...
  • 已更改:0:...但都不需要更改
  • 警告:0:运行查询时没有发生可恢复的错误

.

Update gina1.proj001_bcbs set contract_percentage = 2.50 
where contract_category = 'All Other Services' and doctor = 'JSmith' ;

很可能会给您带来9行受影响匹配行:9更改:9警告:0

关于mysql - 无法更新 MySQL 中的表,我正在使用工作台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9520461/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com