본문 바로가기

기술/SQL

MySQL/MySQL workbench) error 1175 해결 : update safe mode 끄기

db서버에 연결된 mysql workbench에서 데이터를 업데이트하려니까 에러가 떴다. 여기저기 찾아보니 워크벤치 메뉴 바 중에 edit > preference에 들어가서 update safe mode를 끄라는데 아무리 찾아봐도 edit 메뉴에 preference 메뉴가 없는 것.. 

그러다가 발견한 해결방법 

 

MySQL error code: 1175 during UPDATE in MySQL Workbench

I'm trying to update the column visited to give it the value 1. I use MySQL workbench, and I'm writing the statement in the SQL editor from inside the workbench. I'm writing the following command:

stackoverflow.com

SET SQL_SAFE_UPDATES = 0;

# your code SQL here (update 구문 쓰면 동작함)

SET SQL_SAFE_UPDATES = 1;