1. 程式人生 > >mysql開啟/關閉 update delete 安全模式

mysql開啟/關閉 update delete 安全模式

在使用mysql執行delete的時候,如果不是用主鍵當where語句,會報如下錯誤,使用主鍵用於where語句中正常。

在使用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

修改下資料庫模式

安全起見,執行完操作後,建議在恢復成預設狀態1

在使用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

修改下資料庫模式

安全起見,執行完操作後,建議在恢復成預設狀態1