LOWER
Learn how to use the LOWER string function in PlaidCloud Lakehouse. Converts a string to lowercase - see syntax, examples, and output.
Converts a string to lowercase.
Analyze Syntax
func.lower(<str>)
Analyze Examples
func.lower('HELLO')
┌─────────┐
│ 'hello' │
└─────────┘
SQL Syntax
LOWER(<str>)
SQL Examples
SELECT LOWER('HELLO');
┌───────┐
│ hello │
└───────┘