Name

upper() — Convert all ASCII characters to uppercase

Common Usage

upper( text )

Description

The upper() function returns a copy of text with all of the letter characters converted to uppercase. The built-in implementation of this function only works with ASCII characters (those that have a value of less than 128).

The ICU extension provides a Unicode aware implementation of upper().

See Also

lower()