ORACLE 10g 数字数据类型
我创建了一个名为“员工”的表,其中有一列名为“工资”,数据类型为 NUMBER(11) 然后我在工资中输入了一个值 12345678901 但在输出中,其值显示为 1.2345E+10。
谁能解释一下这到底是什么?
I created a table called employees with one column named salary with data type NUMBER(11)
and then I entered a value into salary of 12345678901
but in output it values shows like this 1.2345E+10.
Can anyone explain me what this is exactly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是数字的科学记数法。您可以看看这篇文章 关于 Oracle 中的数字数据类型。
It is the scientific notation of the number. You may take a look at this article about numeric data types in Oracle.