Skip to main content
Skip to main content

UPPER

upper​

description​

Syntax​

VARCHAR upper(VARCHAR str)

Convert all strings in parameters to uppercase. Another alias for this function is ucase.

example​

mysql> SELECT upper("aBc123");
+-----------------+
| upper('aBc123') |
+-----------------+
| ABC123 |
+-----------------+

keywords​

UPPER