MySQL 中的双打
我创建了一个表,其中包含一些双精度数,但是当我添加这个数字时
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其作为字符串存储在数据库中......
当您想使用该值时,只需使用您所使用的语言中的某种方法将字符串转换为双精度。
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.
请参阅手册
See the manual