아무거나

[mysqlworkbench] update 오류 Error Code: 1175... 본문

IT/개발관련툴

[mysqlworkbench] update 오류 Error Code: 1175...

전봉근 2019. 12. 26. 01:36
반응형

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 Editor and reconnect.

 

update문을 치면 위와 같은 오류를 출력하는 경우가 있다.

그럴땐 safe 모드를 풀어주자.

 

SET SQL_SAFE_UPDATES = 0;

반응형
Comments