I have very simple query like this:
SELECT * FROM `all_conversations` WHERE `deleted_1` != '1';
And my deleted_1
be default is null
or some user id, but for some reason this query always returns me 0 rows, i also tried <>
but still no luck what could be wrong?
EDTI So after running more querys i find out that my problems was default value of deleted_1
field, it was NULL
so i modified my query and now it works fine:
SELECT *
FROM `all_conversations`
WHERE `deleted_1` != 'NULL'
AND `deleted_1` != 23
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…