null与in:null值不会包含在in的结果集中。
A105024@O02DMS1>select * from test;
ID NAME
---------- -------------- ------
1 A
B
3 C
A105024@O02DMS1>select * from test where id in (1);
ID NAME
---------- --------------------
1 A
A105024@O02DMS1>select * from test where id not in(1);
ID NAME
---------- --------------------
3 C
从上面的例子我们可以看出,不管是in还是not in,null值都不 在结果集中,除非显示的声明:
A105024@O02DMS1>select * from test where id is null;
ID NAME
---------- ------------------- -
B
-->null与“加减乘除等于”的关 系:null不能用来进行等于比较;与任何东西的加减乘除的结果都是null。
A105024@O02DMS1>select * from test where id = null;
no rows selected
A105024@O02DMS1>select id+1 from test where id is null;
ID+1
----------
null与集合运算的关系:集合运算中将所 有的null作为相等的值来对待。
A105024@O02DMS1>select null from dual union select null from dual;
N
-
A105024@O02DMS1>select null from dual minus select null from dual;
no rows selected
-->null与Group by 的 关系:group by把null作为一个值来对待。
A105024@O02DMS1>select id,count(*) from test group by id;
ID COUNT(*)
-- -------- ----------
1 1
1
3 1