DB/MYSQL

[ MYSQL ] WHERE 를 통한 DELETE 안될때

HEON.D 2021. 9. 25. 12:03

에러메세지

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.

 

해결방법

Safe 모드 비활성화

set sql_safe_updates=0;

 

작업후 다시 Safe 모드를 활성화 시켜놓을 것

set sql_safe_updates=1;

'DB > MYSQL' 카테고리의 다른 글

[ MYSQL ] 컬럼 구조 확인  (0) 2021.11.17
[ MYSQL ] DATETIME Null값 체크  (0) 2021.10.21
[ MYSQL ] 테이블 복제  (0) 2021.09.07
[ MYSQL ] 시간관련 쿼리  (0) 2021.08.20
[ MYSQL ] Column Flag  (0) 2021.02.05