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)
X是数值,D是保留小数的位数。
其作用就是按照小数位数,进行数值截取(此处的截取是按保留位数直接进行截取,没有四舍五入)。
1.结果直接截断
2.不会有0的填充,比如¥330.8,不会显示¥330.80
转换类型
结果会有0的填充
X是数值,D是保留小数的位数。
1.结果四舍五入。
2.不会有0的填充。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)