浪费别人的时间等于是谋财害命,浪费自己的时间等于是慢性自杀。 —— 列宁

mysql 将指定列的浮点数转化为整数

mysql 将指定列的浮点数转化为整数:

update set B =  cast(B as decimal(10,0)) 
-- 或者
update set B = round(B,0)

 

例如:update hdcloude01.t_a01_eltable set t_a01_eltable.BatteryDal =  round(t_a01_eltable.BatteryDal, 0) where t_a01_eltable.`BatteryDal`  is not null; 

posted @ 2016-05-11 18:19  一谦的视界  阅读(2888)  评论(0编辑  收藏  举报