Syntax
UPPER(str)
Purpose
You can call the UPPER() function to convert lowercase letters in a string specified by str into uppercase letters.
Examples
obclient> SELECT UPPER('obclientHello! ');
+----------------------------+
| UPPER('obclientHello! ') |
+----------------------------+
| OBCLIENTHELLO! |
+----------------------------+
1 row in set