本文主要是介绍坑惨了!flink执行sql语句时,出现com.mysql.jdbc.MysqlDataTruncation: Data truncation: Truncated incorrect DOUBLE,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
出现错误!
Data truncation: Truncated incorrect DOUBLE value: '2018-10-18 19:21:47'
Flink操作mysql数据库对数据进行更新时。
原始sql语句:
update t_lianlu_utilization_alarm set cancle_time=? and recevicetime=? where device_id=? and port_id=?
修改为
update t_lianlu_utilization_alarm set cancle_time=? ,recevicetime=? where device_id=? and port_id=?
将sql语句中的and 改为逗号。
因错误花费半个小时,特此记下
这篇关于坑惨了!flink执行sql语句时,出现com.mysql.jdbc.MysqlDataTruncation: Data truncation: Truncated incorrect DOUBLE的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!