Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

helloRecodes

[MySQL] Error Code 1175 본문

IT/MySQL

[MySQL] Error Code 1175

닉네 2021. 10. 21. 22:47
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.

 

해결 방법 1

Edit > Preferences...

 

SQL Editor > Safe Updates 체크 해제 > OK > MySQL Workbench 재시작

 

해결 방법 2

원하는 쿼리 실행 전 다음 쿼리 실행(일시적 Safe Updates 해제)

set sql_safe_updates=0;

 

'IT > MySQL' 카테고리의 다른 글

[MySQL] MySQL 환경 변수 설정  (0) 2021.10.14
[MySQL] MySQL 다운로드 및 설치  (0) 2021.10.13
Comments