Skip to main content

UCASE

Description

Used to convert a string to uppercase letters

Alias

  • UPPER

Syntax

UCASE( <str> )

Required Parameters

ParametersDescription
<str>The string to convert to uppercase

Return Value

The value after converting the uppercase

Example

SELECT ucase("aBc123");
+-----------------+
| ucase('aBc123') |
+-----------------+
| ABC123 |
+-----------------+