处理MySQL更新表时ErrorCode:1175.You are using safe update mode and you tried to update
?
Message: You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column.?
Solution:
SET?SQL_SAFE_UPDATES?= 0;
update T set col = 'xxx' where? condition ……;