Link Search Menu Expand Document

UPPER

Converts the string to uppercase format.

Syntax

UPPER(<string>)
Parameter Description
<string> The string to be converted to all uppercase characters.

Example

SELECT
	UPPER('hello world')

Returns: HELLO WORLD