Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
此查询返回 colA 为空的行:
select * from viewA where colA is null;
但是这个查询不 -
select * from viewA where nvl(colA, 'X') = 'X';
知道为什么第二个查询没有返回任何结果吗?
select * from viewA where nvl(colA, 'null') = 'null';