electricphp
Programmer
Why does this return results:
SELECT * FROM messages WHERE receiver_del = 'yes'
but this doesn't
SELECT * FROM messages WHERE receiver_del != 'yes'
There should be one result returned. there is one record that has the value in receiver_del set as yes.
The rest of the records have that field as null. maybe that has something to do with it?
SELECT * FROM messages WHERE receiver_del = 'yes'
but this doesn't
SELECT * FROM messages WHERE receiver_del != 'yes'
There should be one result returned. there is one record that has the value in receiver_del set as yes.
The rest of the records have that field as null. maybe that has something to do with it?