用mysql workbench 更新一個表的時候報如下異常:
Error Code: 1175. To disable safe mode, toggle the option in Preferences -> SQL Editor -> Query Editor and reconnect.
You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column
使用安全更新模式的時候update語句必須使用一個關鍵字列屬性來限定更新的范圍。如果不使用關鍵字列來限定范圍或更新所有記錄的時候就不能用安全更新模式。
解決辦法是執行以下語句設置為非安全更新模式.
SET SQL_SAFE_UPDATES=0;