Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- spring
- git
- log4j2
- Spring Batch
- 정규표현식
- npm
- Node
- Express
- upgrade
- REACT
- 퀵소트
- regex
- java
- JavaScript
- migration
- expire_logs_days
- log_bin
- nodejs
- mysql 5.5
- Effective Java 3/e
- Regular expression
- eslint
- Webpack
- current_date
- Effective Java
- MySQL
- spring cloud
- update
- REACTJS
- Chunk
Archives
- Today
- Total
728x90
목록truncated incorrect double value (1)
728x90
내 세상
[MySQL] Error: ER_TRUNCATED_WRONG_VALUE: Truncated incorrect DOUBLE value
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'
Technical/MySQL
2020. 6. 16. 08:28