gpt4 book ai didi

mysql float 据字段不接受每个 float

转载 作者:可可西里 更新时间:2023-11-01 08:34:10 25 4
gpt4 key购买 nike

我有一个 float 数据字段:

`total` float(20,2) unsigned NOT NULL,

我想插入一个 float ,如:“815032.68”,但它不被接受,数字四舍五入为 815032.69。为什么?

最佳答案

使用定点数据类型

`total` DECIMAL(20,2) unsigned NOT NULL

The DECIMAL and NUMERIC types store exact numeric data values. These types are used when it is important to preserve exact precision, for example with monetary data.

MySQL Doc

浮点数据类型只能存储approximate numbers .

关于mysql float 据字段不接受每个 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18208061/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com