I have the following query
SELECT * FROM table
WHERE tester <> 'username';
I am expecting this to return all the results where tester is not the string username
, But this not working. I think I am looking for the inverse of the Like
operator but I am not sure? In my searches I have found solutions for numbers (that's where i got <> from), but this seems to not be working with strings.