MySQL

Database

MySQL Workbench - UPDATE Query 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. * 해결방법 1. Query 입력 : SET SQL_SAFE_UPDATES =0; 2. Workbench 설정 : safe 모드 체크 해지 이 모든 문제의 원인 : Safe Update 모드 상태로 설정되어 있을 때 → UPDATE시 KEY Column을 이용하지 않으면 업데이트 불가

kgenots
'MySQL' 태그의 글 목록