upper
upper(value: string) -> string
Return the input string in uppercase.
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
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".
Updated 8 days ago