I want to check, if a string consits only of uppercase letters. I know that RLIKE/REGEXP are not case sensitive in MySQL. So I tried to use the :upper: characte
:upper:
This worked for me to get the list of rows having only upper case characters:
SELECT name, UPPER(name) FROM table WHERE BINARY name = BINARY UPPER(name) ;