sql server not in匹配不到子查询

 

column1 not in (select column2 from student)

如果子查询中找到的列中有NULL,那么NULL和column匹配的结果都是NULL,where条件句不返回任何行,输出为空

sql server not in匹配不到子查询

在子查询中设置where筛选出值为NULL的

col1 not in (select col2 from table where col2 is not null)
上一篇:Hbase的基本sql使用


下一篇:Oracle update 多字段更新