반응형
에러 메세지 :
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 Queries and reconnect.
해결법 :
아래 쿼리문을 실행하여 Safe Update 모드를 해제해야한다.
set sql_safe_updates = 0;
반응형
': IT > SQL' 카테고리의 다른 글
[MSSQL] 지정한 개수 만큼 SELECT,UPDATE,DELETE 하기 (0) | 2017.04.05 |
---|---|
[MySQL]Create stored procedure 프로시저 생성 (0) | 2016.02.25 |
[MySQL] Table Create/Alter/Delete (0) | 2016.02.16 |
[Mysql] where절에서 AND 와 OR (0) | 2016.02.05 |
[MySQL] IFNULL , select문에서 null값 치환 (0) | 2016.02.04 |