当前位置: 代码迷 >> 综合 >> mysql 删除行时报错Error Code: 1175. You are using safe update mode and you tried to update a table without
  详细解决方案

mysql 删除行时报错Error Code: 1175. You are using safe update mode and you tried to update a table without

热度:25   发布时间:2023-12-22 15:36:03.0

SET SQL_SAFE_UPDATES = 0;

设置SQL_SAFE_UPDATES,该属性开启会使非主键的delete操作无法执行

  相关解决方案