column1 not in (select column2 from student)
如果子查询中找到的列中有NULL,那么NULL和column匹配的结果都是NULL,where条件句不返回任何行,输出为空
在子查询中设置where筛选出值为NULL的
col1 not in (select col2 from table where col2 is not null)
2023-01-08 12:55:45
column1 not in (select column2 from student)
如果子查询中找到的列中有NULL,那么NULL和column匹配的结果都是NULL,where条件句不返回任何行,输出为空
在子查询中设置where筛选出值为NULL的
col1 not in (select col2 from table where col2 is not null)