update操作报错

相关操作:

               update table set column='***';

               执行后提示:ERROR 1175 (HY000): You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column

问题分析:

               更新时必须有where条件,或者也可以修改sql_mode的sql_safe_updates参数设置成0

你可能感兴趣的:(sql_mode)