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
在创建MySQL的DECIMAL列的时候,可以指定进度和标度:DECIMAL(M,D)。M为精度(precision),表示该值的总长度;D为标度(scale),表示小数点后面的长度。在创建MySQL的DECIMAL列的时候,可以指定进度和标度:DECIMAL(M,D)。M为精度(precision),表示该值的总长度;D为标度(scale),表示小数点后面的长度。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)