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