首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > oracle >

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

2013-07-08 
如何设置在sqlplus中不以科学计数法显示查询语句:select *from inter.Pboss_Customer awhere a.customer_n

如何设置在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 ...

热点排行