upper¶
Description¶
Return the input string in uppercase.
Return type¶
string
Domain¶
This is a scalar function (calculates a single output value for a single input row.)
Categories¶
Usage¶
upper(value)
| Argument | Type | Optional | Repeatable | Restrictions | 
|---|---|---|---|---|
| value | string | no | no | none | 
Examples¶
make_col SEV:upper(severity)
This makes a new column named SEV with the content of a column named severity shifted to upper case. If severity contains “warn”, SEV will contain “WARN”.