将某字段的值显示为数字
在oracle的sql*plus中,有字段的值不显示为数字:
如下
SQL> select * from v$sysstat where statistic#=331;
STATISTIC# NAME CLASS VALUE STAT_ID
---------- -------------------- ---------- ---------- ----------
331 parse count (hard) 64 ########## 143509059在sqlplus中执行以下命令:
SQL> col value format 9999999999
然后再次查询即可:
SQL> /
STATISTIC# NAME CLASS VALUE STAT_ID
---------- -------------------- ---------- ----------- ----------
331 parse count (hard) 64 911 143509059
for linux and python

浙公网安备 33010602011771号