lower
lower(value: string) -> string
Return the input string in lowercase.
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
Examples
make_col sev:lower(severity)
This makes a new column named sev with the content of a column named severity shifted to lower case. If severity contains "INFO", sev will contain "info".
Updated 8 days ago