내 세상

[MySQL] Error: ER_TRUNCATED_WRONG_VALUE: Truncated incorrect DOUBLE value 본문

Technical/MySQL

[MySQL] Error: ER_TRUNCATED_WRONG_VALUE: Truncated incorrect DOUBLE value

sga8 2020. 6. 16. 08:28
728x90
반응형

MySQL 에러

    Error: ER_TRUNCATED_WRONG_VALUE: Truncated incorrect DOUBLE value

 

 

해당 에러는 update set을 할 때, 콤마(,)로 묶어줘야 하는 부분을 and로 묶어 발생하였음.

 

 

**BEFORE**

update sample_table set ip= '1.1.1.2' and protocol = 'ssh' where name = 'sga8'

 

**AFTER**

update sample_table set ip= '1.1.1.2' , protocol = 'ssh' where name = 'sga8'

728x90
반응형