본문 바로가기
MYSQL

MYSQL - CRUD 3 - 2. update 오류

by 하니__ 2024. 5. 13.

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가 되지 않는다면
 
세이프 업데이트모드가 활성화 되어있어서 업데이트가 되지 않는다는 문구인데
그렇다면 해제 하도록 하자
 

Edit의 Preference를 클릭한 후에
 

 
SQL에디터를 선택
스크롤을 아래로 내려
세이프 업데이트의 체크를 해제한다
 
 
 

그리고 상단 메뉴의 Query를 클릭하여
 
Reconect to Server 를 클릭한 후에 다시 해보자

'MYSQL' 카테고리의 다른 글

MYSQL - 문자열의 일부를 가져오는 substring( )  (0) 2024.05.13
MYSQL - 문자열을 합치는 concat( ), concat_ws( )  (0) 2024.05.13
MYSQL - CRUD 3. Update , Delete  (0) 2024.05.13
MYSQL - CRUD 2. Read  (0) 2024.05.13
MYSQL - CRUD 1. Create  (1) 2024.05.13