问答详情
源自:4-12 [Oracle] 子查询中的空值问题
oracle 中null=null 或者像null!=null,null和null之间可以进行判断吗,怎么证明
如题,怎么证明
提问者:180416
2019-04-25 11:19
个回答
Johnny_t
2019-05-05 21:53:56
已采纳
select 1 from dual where null != null;
select 1 from dual where null is null;
1