SELECt * FROM all_conversations WHERe deleted_1 <> 1 OR deleted_1 IS NULL
NULL值需要特殊处理:http : //dev.mysql.com/doc/refman/5.1/en/working-with-
null.html
我建议使用菱形运算符(
<>),
!=因为第一个是有效的SQL,第二个是MySQL的加法。

SELECt * FROM all_conversations WHERe deleted_1 <> 1 OR deleted_1 IS NULL
NULL值需要特殊处理:http : //dev.mysql.com/doc/refman/5.1/en/working-with-
null.html
我建议使用菱形运算符(
<>),
!=因为第一个是有效的SQL,第二个是MySQL的加法。