반응형
츄르사려고 코딩하는 코집사입니다.
1. 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. 문제 해결 방법
- 이 에러는 sql 쿼리를 짤 때, 데이터베이스 테이블을 싹 날릴 위험이 있어 발생하는 오류다.
- 즉, 어떤 행위를 할 때 안전 장치를 걸어놓은 것이다.
- 그래서, 영구적인 해제 방법도 있지만, 일시적인 방법으로는 아래의 코드를 쿼리문에서 돌리면 된다.
1) 일시적인 해제 방법
- set sql_safe_updates=0;을 쿼리문에서 돌린다.
set sql_safe_updates=0;
반응형
최근댓글