I need to run a SELECT command on a table in my database, but instead of it being
SELECT * FROM table_name WHERE 1 AND status = 4
I need it to do the opposite, and select, when the status isn't 4?
I tried
SELECT * FROM table_name WHERE 1 AND status!= 4
Does anyone know the parameter for this?
Regards,
William.