本文介绍了是否可以在MySQL中将DECIMAL转换为DOUBLE?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道所有的数值含义,即浮点格式固有的可能的舍入问题,但就我而言,我想在MySQL
中有DECIMAL
列,我想直接将DOUBLE
转换为DOUBLE
c1>查询而不是下游.
I know all the numerical implications, that is, the possible rounding issues inherent to floating point formats, but in my case I have DECIMAL
columns in MySQL
that I want to convert to DOUBLE
straight in the MySQL
query rather than down stream.
有人可以帮忙吗?
推荐答案
SELECT my_decimal_field + 0E0 FROM my_table
这篇关于是否可以在MySQL中将DECIMAL转换为DOUBLE?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!