lower
function
Applies to: Databricks SQL Databricks Runtime
Returns expr
with all characters changed to lowercase according to the collation of expr
.
Syntax
lower(expr)
Arguments
expr
: ASTRING
expression.
Returns
A STRING
.
Examples
> SELECT lower('LowerCase');
lowercase