从pl/sql查询字段类型为number并且长度大于16位的内容显示为科学计数法的计数方法
从pl/sql查询字段类型为number并且长度大于16位的内容显示为科学计数法的计数方法pl/sql从pl/sql查询字段类型为number并且长度大于16位的内容显示为科学计数法的计数方法,后经查找找到了如下解决办法:1.在toad中->view->option->data->display large number in scientific notation,不选择该选项即可在pl/sql developer中->tools->preferences->sql windows->number fields tochar,选中该选项即可。2.查看numw参数sql>show numwnumwidth 10修改此参数为需要位数,如:set numw 19之后查询此字段内容正常。