써먹는 웹개발
[MYSQL] 에러 번호 1175 Safe Update 해결방법 본문
728x90
반응형
에러 메시지
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. 일시적 해결 방법
- 전체 변경 가능하도록 수정
set sql_safe_updates=0;
- 전체 변경 불가능하도록 수정(원복)
set sql_safe_updates=1;
2. Workbench 설정에서 체크해제
728x90
반응형
'웹개발 > Database' 카테고리의 다른 글
[MySQL] 데이터베이스에서 서브 쿼리를 사용한 경우에 "Every derived table must have its own alias" 에러가 발생하는 케이스 (0) | 2023.10.11 |
---|---|
[MySQL] 일괄적으로 컬럼값의 데이터 변경하는 쿼리문 (0) | 2023.09.13 |
[Mariadb] 테이블에 중복 데이터 있는지 확인하는 쿼리문 (0) | 2023.09.06 |
[MariaDB] 'selects cannot be used in field list?' 해결방법 (0) | 2023.09.04 |
[MySQL || MariaDB] 데이터베이스 접근 권한 거부 Host 'IP' is not allowed to connect to this MySQL server (0) | 2023.08.11 |
Comments