에러메세지


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 모드 설정시에는 키 컬럼으로만 데이터를 update 가능


해결


safe update 모드를 해지한다.


set sql_safe_updates=0;

+ Recent posts