程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> Error Code: 1175.You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column.,sqlupdatecolumn

Error Code: 1175.You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column.,sqlupdatecolumn

編輯:MySQL綜合教程

Error Code: 1175.You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column.,sqlupdatecolumn


在MySQL Workbench裡面使用SQL語句:

delete from 表名

提示出錯:

Error Code: 1175.You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column.

這是因為設置的是safe update mode,必須跟where。

解決方法有兩個:

1. 運行SET SQL_SAFE_UPDATES=0; 

2. 打開Edit->Preferences->SQL Queries,取消“Safe Updates”前面的勾。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved