The Error 1175 is reported when MySQL deletes the updated data. When a record in mysql database is deleted today, it cannot be deleted. The Error message is as follows: [html] Error Code: 1175. you are using safe update mode and you tried to update a table without a WHERE that [html] uses a KEY column To disable safe mode, toggle the option in Preferences-> SQL Editor-> Query Editor and reconnect. after searching for information, I found that mysql has a variable named SQL _SAFE_UPDATES. For the security of database update operations, the default value is 1, so the update fails. Under www.2cto.com, the values of SQL _SAFE_UPDATES are 0 and 1. SQL _SAFE_UPDATES has two values: 0 and 1. When SQL _SAFE_UPDATES is set to 1, the update and delete statements without the where and limit conditions cannot be executed. Even the update and delete statements with the where and limit conditions but without the key column cannot be executed. When SQL _SAFE_UPDATES = 0, the update and delete operations will be executed smoothly. Obviously, the default value of this variable is 1. Therefore, when a 1175 error occurs, you can set the SQL _SAFE_UPDATES value to 0 and then execute the update, for example, [SQL] SQL _SAFE_UPDATES = 0; delete from testTable where name = 'zhangsan ';