事象 MySQLのワークベンチでUPDATE文を実行すると、以下のエラーが発生した。 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. 0.062 sec 原因 大量の(主キー以外の)update/deleteを誤って行えない様に制限してくれているため。 対応方法(一時的) SET SQL_SAFE_UPDATES = 0; 参考サイト http://rikutoto.blogspot.jp/2013/11/mysqlerror-code