MySQL Workbench 에서 Error Code:1175 (Safe update mode) 에러 발생 시
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.
하나의 레코드만을 update, delete하도록 설정되어 있는데, 다수의 레코드를 update나 delete하는 sql명령어가 실행되기 때문에 발생을 하는 것.
해결방법 1.
set sql_safe_updates=0;
해결방법 2.