in和not in的问题
字段1 是varchar型数据,用
where 字段1 in (select 字段 from table1)
可以得到正确的结果,
但用
where 字段1 not in (select 字段 from table1)
得不到任何结果,
不知是何原因。