UPPER()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Xpand
Topics on this page:
Overview
Returns a string converted to uppercase.
USAGE
UPPER(string)
Argument Name | Description |
---|---|
| The string to transform |
DETAILS
UPPER()
is a string function that returns the input value with all lowercase characters transformed into uppercase based on the character set mapping in effect.
A NULL
is returned if the argument is NULL
.
EXAMPLES
SELECT UPPER('Mariadb');
+------------------+
| UPPER('Mariadb') |
+------------------+
| MARIADB |
+------------------+