본문 바로가기

: IT/SQL

[MySQL] Error Code 1175 업데이트 에러

반응형

에러 메세지 : 

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.





해결법 : 

아래 쿼리문을 실행하여 Safe Update 모드를 해제해야한다.

set sql_safe_updates = 0;

반응형