snowflake.snowpark.functions.lower¶

snowflake.snowpark.functions.lower(e: Union[Column, str]) → Column[source]¶

Returns the input string with all characters converted to lowercase.

Example:

>>> df = session.create_dataframe(['abc', 'Abc', 'aBC', 'Anführungszeichen', '14.95 €'], schema=["a"])
>>> df.select(lower(col("a"))).collect()
[Row(LOWER("A")='abc'), Row(LOWER("A")='abc'), Row(LOWER("A")='abc'), Row(LOWER("A")='anführungszeichen'), Row(LOWER("A")='14.95 €')]
Copy