UCASE
On this page
Converts the given string to uppercase.
Syntax
UCASE (str)UPPER (str)
Arguments
str Any string object
Return Type
String
Examples
SELECT UCASE('olé'), UPPER('olé');
+---------------+---------------+
| UCASE('olé') | UPPER('olé') |
+---------------+---------------+
| OLÉ | OLÉ |
+---------------+---------------+
Related Topics
Last modified: February 27, 2023