Safe Mode

    [MySQL] Safe Mode 해제하는 방법 (Error Code : 1175)

    [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 가 활성화 되어 있으므로 에러 ..