使用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 Queries and reconnect.
在使用mysql執行update的時候,若是不是用主鍵當where語句,會報以下錯誤,使用主鍵用於where語句中正常。
異常內容: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 Queries and reconnect.
這是由於MySql運行在safe-updates模式下,該模式會致使非主鍵條件下沒法執行update或者delete命令,執行命令SET SQL_SAFE_UPDATES = 0;修改下數據庫模式
從新查詢數據庫值,已經成功更新
若是想要提升數據庫安全等級,能夠在恢復回原有的設置,執行命令:SET SQL_SAFE_UPDATES = 1;
執行成功後,以delete命令爲例,非主鍵狀況下又報錯了,說明安全等級修改爲功
mysql