0

我们有一个选择查询来构建数据集并绑定到数据网格。该代码在我的本地计算机上运行良好,在开发测试服务器上也运行良好。但是在我们部署到用户验收测试服务器后,我们得到了标题错误。

我提取了查询并在 sql developer 中运行它,指向用户验收测试数据库,也没有错误。

请帮忙。

4

1 回答 1

0

Its possible that one or more of the columns in your resultset is null. Try using NVL on your columns to substitute a null-valued column with a 'default' value.

select NVL(supplier_city, 'n/a') 
from suppliers;

This will return 'n/a' if supplier_city is null

http://www.techonthenet.com/oracle/functions/nvl.php

于 2012-11-28T20:32:09.490 回答