1

此查询返回 colA 为空的行:

select * from viewA where colA is null;

但是这个查询不 -

select * from viewA where nvl(colA, 'X') = 'X';

知道为什么第二个查询没有返回任何结果吗?

4

1 回答 1

-3

select * from viewA where nvl(colA, 'null') = 'null';

于 2013-10-10T03:54:28.970 回答