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 해제 )