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
1、你可以在创建表的时候限制小数点的位数,如create table xxx(abc decimal(10,2))其中decimal(10,2),就是指整数10位,保留2位小数
2、你可以查询的时候用round()函数四舍五入保留小数,如select round(abc,2)
可以在建表的时候限定小数点的长度,例如decimal(5,2),后面的2就是2位的意思。如果表已经建好,可以在查询语句中用函数 round(X,2) 转换,X为字段,后面的数字为长度,你要几位就填几。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)