数据库删除操作异常

在执行update或者delete语句的时候,如果where语句不是主键,则会报错Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect.。

where语句用主键则不报异常

这是因为,mysql默认运行在safe-updates模式下,该模式会导致非主键条件下无法执行update或者delete命令

执行命令SET SQL_SAFE_UPDATES = 0;修改下数据库模式,则update/delete运行成功

你可能感兴趣的:(mysql)