mysql 中 REAL() 数据类型的目的/要点是什么?
mysql 中 REAL() 数据类型的目的/要点是什么?我理解你有浮点型、双精度型和小数型,但是“真实”数据类型在哪里?有什么想法吗?
提前谢谢您;-)
real 与 float 或 double 相同吗?
what's the purpose/point of the REAL() Datatype in mysql? You have float,double and decimal which i understand but where does the "real" datatype come into it? Any ideas?
Thank you in advance ;-)
is real the same as float or double?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来源:MySQL 5.1 参考手册 - 数字类型
Source: MySQL 5.1 Reference Manual - Numeric Types
从文档中:
http://dev.mysql.com/doc/refman/5.1 /en/numeric-types.html
From the documentation:
http://dev.mysql.com/doc/refman/5.1/en/numeric-types.html
REAL 只是 DOUBLE PRECISION 的另一个名称。
REAL is just another name for DOUBLE PRECISION.