[Error] delete 에러 : delete from member Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column.

YS_Study.log·2022년 12월 13일
0
post-custom-banner

상황

delete from member;
테이블의 데이터를 전체 삭제하는데 에러발생 -> 삭제 안됨

에러코드

delete from member 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.

해결방안

set sql_safe_updates=0;

쿼리 실행하면 삭제가 된다.

safe mode가 활성화되서 삭제가 막아진 것, 안전모드를 초기화 셋팅해주면 된다.

에러코드에서 보면, Preferences 메뉴에 들어사서 editor 클릭 -> 안전모드 해제 하면된다고 적혀있다.( Safe Updates 해제 )

profile
느리지만 조금씩 공부하는 중 입니다. 현재 1년 6개월차 신입입니다 ><!

0개의 댓글