我正在使用MySQL WORKBENCH 6.1.6。我需要更新我的database_table。我尝试过以下编码:
UPDATE `test`.`festexplorer_users`
SET
User_preference = 'All_Over_India'
WHERE User_year_of_passing=2015;
在这里,"测试"是我的数据库名称,festexplorer_users是我的表名,我需要更新User_preference列。我有以下错误。
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.
我怎样才能清除错误?
答案 0 :(得分:0)
在MySQL WorkBench中转到
编辑 - >偏好 - > SQL查询
取消选中禁止更新和删除
没有WHERE子句的语句(安全更新)
然后