로딩
요청 처리 중입니다...

[MySQL] Error Code: 1175, 1093

 [MySQL] Error Code: 1175, 1093

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.참고 사이트It looks like your MySql session has the safe-updates option set. This means that you can't update or delete records without specifying a key (ex. primary key) in the where clause.파파고 번역 결과SSAFY 실습하는데, UPDATE 구문이 자꾸 제대로 작동되지 않았다.발생한 에러코드를 구글에 검색했는데, 다양한 해결책이 있었다.1.

MySQL Workbench 옵션 변경2. SAFE MODE 끄기 (본질적으로 1..........