UPPER - String
Converts the given string to upper case
Input parameters
Name | Type | Optional | Description |
---|---|---|---|
str |
String | False |
Output
String: UTF-8 upper-case representation of string
Usage
UPPER(<str>)
Examples
Example 1
Query
LOAD tmp
AS ('': UPPER(" StRiNg "))
Result
" STRING "