mysql中小数点用decimal(x,y)进行存储,
示例如下,
1、创建测试表,create table test_decimal(id int, fee_value decimal(20,3))
2、插入测试数据,
insert into test_decimal values(1,12.2)
insert into test_decimal values(3,33.789)
insert into test_decimal values(6666,555.332)
3、查询表中所有记录,select * from test_decimal t
4、小数转整,可以用floor或round函数,select t.*, floor(fee_value) as fee1, round(fee_value) fee2 from test_decimal t
格式化浮点数的问题,用format(col,2)保留两位小数点,出现一个问题,例如下面的语句,后面我们给出解决方法复制代码代码如下:
SELECT FORMAT(12562.6655,2)
结果:12,562.67
查看文档:Formats the number X to a format like '#,###,###.##', rounded to D decimal places, and returns the result as a string. If D is 0, the result has no decimal point or fractional part.整数部分超过三位的时候以逗号分割,并且返回的结果是string类型的。
复制代码代码如下:
mysql>SELECT FORMAT(12332.123456, 4)
->'12,332.1235'
mysql>SELECT FORMAT(12332.1,4)
->'12,332.1000'
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)