Hi,
Is there a way for me to have two conditions on one field in MySQL Where?... I have a field called type
and I want to do this:
WHERE `type` != 'name' AND `type` != 'photo'
I'm hoping for a better way to do that, so I could compare type
to two possible options?
Thanks!