엠마의 개발공부일지

MySQL Error code 1175 : You are using safe update mode and you tried to update a table without a Where that uses a KEY column 본문

Stack/대환장 오류 모음집

MySQL Error code 1175 : You are using safe update mode and you tried to update a table without a Where that uses a KEY column

Emmababy 2020. 11. 26. 14:55
728x90

[에러원인]

MySQL에서 UPDATE OR DELETE를 사용할 경우,

워크밴치에서 사용자의 실수를 줄이기위해 Safemode를 걸어둠

[에러제거]

아래의 해지코드를 작성하여 실행해주면 해제 끝!

코드 : SET SQL_SAFE_UPDATES = 0;

728x90
Comments