Lower

String Function

Description

Converts the string to all lower case.

Click here to navigate to the PostgreSQL docs page for this syntax.

The function Lower() is supported on Snowflake.

Grammar Syntax

LOWER(string TEXT)

Sample Source Patterns

PostgreSQL

SELECT LOWER('SAMPLE IN UPPERCASE');

Snowflake

SELECT LOWER('SAMPLE IN UPPERCASE');

Last updated