Mysql中update语句执行报错:affected rows is more than 10, affected rows is more than expected,使用主键ID解决。
程序员文章站
2022-03-18 23:50:05
**Mysql中update语句执行报错:affected rows is more than 10, affected rows is more than expected,使用主键ID解决。**加粗样式在操作mysql语句时,update某个表A的date类型字段时,有两个where条件,一直报错,提示数据表中变化的行数超过10行,无法更新成功。开始认为是字段的日期类型设置不对导致该报错,经过多次尝试仍报错。脚本如下:update A set A.a=‘2020-07-31’where...
Mysql中update语句执行报错:affected rows is more than 10, affected rows is more than expected,使用主键ID解决。
在操作mysql语句时,update某个表A的date类型字段时,有两个where条件,一直报错,提示数据表中变化的行数超过10行,无法更新成功。开始认为是字段的日期类型设置不对导致该报错,经过多次尝试仍报错。脚本如下:
update A set A.a=‘2020-07-31’
where A.name=‘张三’
and A.学科 ;
参考了其他前辈提供的经验建议使用to_date()、adddate()、DATE_ADD()等函数,同样报错;
后经判断,是否为引起两个条件导致唯一索引重复,于是去掉了以上两个条件,用主键ID代替:
update A set A.a=‘2020-07-31’
where A.主键ID=‘123456’;
返回Affected rows: 1;更新成功。
本文地址:https://blog.csdn.net/zhou790560220/article/details/107158928