【事象】
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-1175.html
【対応方法(恒久的)】
ワークベンチで以下の対応をする。
- [Edit] - [Preferences] を開く。
- SQL Editorタブを開き、Safe Updateというチェックボックスを外す。
- サーバーに対して再接続する。ワークベンチの再起動でもよい。
(参考サイト)
http://stackoverflow.com/questions/11448068/mysql-error-code-1175-during-update-in-mysql-workbench