I have a table with VARCHAR(191)
that actually uses a unique id which is constructed of 5 chars from these options: a-z, A-Z, 0-9
(example: 7hxYy
)
I am performing a simple lookup with select * from table where token = 7hxYy
yet I want the token to be case sensitive since I can actually query for 7hxyy
and it will work.
How can I convert this column to binary without affecting the SQL select statements?