I have the following query
SELECT * FROM table WHERE tester <> \'username\';
I am expecting this to return all the results where test
Another way of getting the results
SELECT * from table WHERE SUBSTRING(tester, 1, 8) <> 'username' or tester is null