判断字段不等于某个值(使用!=),得到的结果要包含该字段值为null的(使用is null)
select * from table where table_file1 != 'fileValue' or table_file1 is null;
判断字段不等于某个值(使用!=),得到的结果要包含该字段值为null的(使用is null)
select * from table where table_file1 != 'fileValue' or table_file1 is null;