오늘도 즐코딩
![[MySQL] Safe Mode 해제하는 방법 (Error Code : 1175)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbIg5XS%2FbtsCfz5SDPu%2FPe58Dfyw9E85tClDyTL1L0%2Fimg.png)
[MySQL] Safe Mode 해제하는 방법 (Error Code : 1175)
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 -> SQL Editor and reconnect. MySQL 에서는 기본적으로 안전 업데이트 모드가 항상 활성화되어 있다. 해제하는 방법을 알아보자! 목차 1. 쿼리로 해제 2. 설정으로 해제 1. 쿼리로 해제 > SET SQL_SAFE_UPDATES = 0; 5번행 > safe mode 가 활성화 되어 있으므로 에러 ..