Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- @Scheduled
- Java
- 브라우저
- Was
- TailMe
- 암호화
- 접근장치
- AES
- FCM
- window10
- URLRewirte
- Firebase
- 알고리즘
- web server
- mysql
- scheduled
- Oracle
- Tomcat
- ua-parser
- programmers
- User-Agent
- WebtoB
- JEUS
- Login
- db
- dbms
- eGov
- WINDOW11
- 개발자도구
- 물리적주소
Archives
- Today
- Total
HD
MySQL Error Code 1175 해결방법 본문
반응형
쿼리 실행시 아래와 같은 에러 코드 및 메시지가 발생한경우
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.
(해결방법)
SET SQL_SAFE_UPDATES=0; -- safe mode 해제
반대로 다시 설정시
SET SQL_SAFE_UPDATES=1; -- safe mode 설정
반응형
'DB > MYSQL' 카테고리의 다른 글
열,컬럼 개수 쿼리 (0) | 2021.06.17 |
---|---|
Mysql 연동시 The server time zone value ‘KST’ is unrecognized or represents more than one time zone 에러 (0) | 2021.05.26 |
Comments