I have the following query
SELECT * FROM table WHERE tester <> \'username\';
I am expecting this to return all the results where test
The strcomp function may be appropriate here (returns 0 when strings are identical):
strcomp
SELECT * from table WHERE Strcmp(user, testername) <> 0;