I\'m trying to search for an exact match of a string in mysql. The string is \'nrew\'. But when I do the queries below, I still get a result:
SELECT UserID F
You can use keyword Binary,
SELECT UserID FROM sys_users WHERE BINARY UserID='nrew'
refer to here