SELECT * FROM table WHERE id != 4;
SELECT * FROM table WHERE NOT id = 4;
SELECT * FROM table WHERE id <> 4;
I've got this all working but I also have to choose another field or(or more field notfields) to selectdecide what rows are returned.
howHow can I get this working?