当前位置: 代码迷 >> Oracle管理 >> 怎么设置在sqlplus中不以科学计数法显示
  详细解决方案

怎么设置在sqlplus中不以科学计数法显示

热度:99   发布时间:2016-04-24 04:38:02.0
如何设置在sqlplus中不以科学计数法显示
查询语句:
select *  from inter.Pboss_Customer a
where a.customer_number ='977100002098201066';
查询结果:
CUST_ID            customer_number
7.0000E+13         977100002098201066


如何设置在sqlplus中不以科学计数法显示?谢谢!
sqlplus 科学计数法

------解决方案--------------------
select to_char(CUST_ID,'fm999999999999999990.99999')  from inter.Pboss_Customer a
 where a.customer_number ='977100002098201066';
------解决方案--------------------
设置列的显示格式
col .. format ...
  相关解决方案