使用Mysql workben時候執(zhí)行update,select,例如下列代碼時候,
update student set Sage=0;
update student set age=age+1;
常常出現(xiàn)錯誤
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.
但是使用命令行又一切正常。
這是由于MySQL Workbench打開了安全更新模式。解決方法就是關閉安全更新模式。
解決方法一:
SET SQL_SAFE_UPDATES = 0;
解決方法二:
1、點擊edit->preferences 或者如下圖右上角的按鈕
發(fā)表評論