I have a table in my Mysql database, which is used for authentication. And now, I need to make the authentication case sensitive. Googling around, I have realized Mysql col
You should be able to do something like this:
Edit: Misread what you intended to do:
ALTER TABLE USERS MODIFY USER_NAME VARCHAR(50) CHARACTER SET binary;