Skip to main content
Version: Latest-3.2

ucase

Description

This function converts a string to upper-case. It is analogous to the function upper.

Syntax

VARCHAR ucase(VARCHAR str)

Examples

mysql> SELECT ucase("AbC123");
+-----------------+
|ucase('AbC123') |
+-----------------+
|ABC123 |
+-----------------+

keyword

UCASE