Syntax
UCASE(str)
Purpose
UCASE() converts lowercase letters in the str string into uppercase letters. This function is a synonym of the UPPER() function.
Examples
obclient> SELECT UCASE('obclienthello! ');
+----------------------------+
| UCASE('obclienthello! ') |
+----------------------------+
| OBCLIENTHELLO! |
+----------------------------+
1 row in set