mysql 툴을 사용하다보면 아래와 같은 에러가 날 때가 있다.
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
이렇게 써 주면 해결된다.
SET SQL_SAFE_UPDATES=0;
나를 위한 저장~
댓글