오늘도 workbench로 개발을 하다가 아래와 같은 오류를 발견했다. 해당 오류는 DB에 insert를 하려다가 발생한 오류이다. 오류 현상! 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나 delete만 허용하게 되어있다. 하지만 insert 등 더 넓은 범위의 sql을 사용하려고 ..