Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
UCASE
On this page
The UCASE() function 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: