I have the following query
SELECT * FROM table WHERE tester <> \'username\';
I am expecting this to return all the results where test
Try the following query
select * from table where NOT (tester = 'username')