
MySQL Error Code: 1175 해결 방법 - You are using safe update mode and you tried to u
·
DB/MySQL
아래와 같이 사용자 이름 컬럼인 usernm으로 delete 쿼리를 사용했더니delete from user where usernm = 'test' ; 이런 에러가 발생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. 원인MySQL의 "Safe Update Mode"로 인해 발생한 것. Safe Update Mode는 사용자가 UPDATE 또는 DELETE 쿼리를 실행할 때, 안전성을 높..