반응형

mysql에서 update문을 사용했는데 

truncated incorrect double value 에러가 날 경우 대처법 

 

update test_table set col1 = 'test' and col2 = 'test2' where col3 = '테스트';

위의 쿼리를 아래와 같이 바꾸면 된다.

 

update test_table set col1 = 'test' , col2 = 'test2' where col3 = '테스트';

 

and 대신에 , 로 써주면 에러가 해결된다.

반응형

+ Recent posts