MySQL 中的双打

发布于 2024-11-04 08:50:02 字数 272 浏览 2 评论 0原文

我创建了一个表,其中包含一些双精度数,但是当我添加这个数字时

7.341270020834490e+005

,数据库是以下号码:

734127.002083

删除了一些有用的信息。我想要的洞号不仅仅是其中的一部分,

例如:

734127.0020834490

I created a table, which are contains some double, but when I added this number

7.341270020834490e+005

and the database is the following number:

734127.002083

cutting out some useful information. I want the hole number not just part of that

like:

734127.0020834490

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

π浅易 2024-11-11 08:50:03

您可以将其作为字符串存储在数据库中......
当您想使用该值时,只需使用您所使用的语言中的某种方法将字符串转换为双精度。

You can store this as a string in your database....
and when you want to use the value just use some method in the language that you are using to convert string to double.

尴尬癌患者 2024-11-11 08:50:02

MySQL 允许非标准语法:
FLOAT(M,D) 或 REAL(M,D) 或 DOUBLE
精度(M、D)。这里,“(M,D)”的意思是
最多可存储 M 个值
总共位数,其中D位数可以
位于小数点之后。

请参阅手册

MySQL permits a nonstandard syntax:
FLOAT(M,D) or REAL(M,D) or DOUBLE
PRECISION(M,D). Here, “(M,D)” means
than values can be stored with up to M
digits in total, of which D digits may
be after the decimal point.

See the manual

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文