반응형
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 대신에 , 로 써주면 에러가 해결된다.
반응형
'개발 > Mysql' 카테고리의 다른 글
[Mysql] index 사용하는 이유 (0) | 2019.05.17 |
---|---|
[Mysql] Count(*) 느릴때 검색속도 개선 (0) | 2019.05.17 |
[Mysql] Every derived table must have its own alias 에러 (0) | 2019.04.18 |
[Mysql] UNION과 UNION ALL 차이점 (0) | 2019.04.18 |
[Mysql] 다중 테이블 조회 (0) | 2019.04.18 |