this :
filed not in ('time','Connection Error');
is semantically equivalent to:
filed<> 'TIme' and filed <> 'Connection Error';
mysql
select null <> 'like';
result is not 0 or 1;
null 和 数据比较是对于不同类型的比较无结果
select * from table where id not in (null)查询不出数据。