Hi, i'm trying to get something to work. I want to do a query with multiples "if not" conditions in a mysql query.
This is working : SELECT * FROM table WHERE column!='value'
This is not working : SELECT * FROM table WHERE column!='value' OR column2!='value'
I've tried all kind of apostrophe and it still not working.
My question is : How can i make multiple "if not" conditions in my mysql query?
Thank you !