Syntax
UCASE(str)
Purpose
You can call this function to convert 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 (0.00 sec)