LOWER
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 │
└───────┘
Converts a string to lowercase.
func.lower(<str>)
func.lower('HELLO')
┌─────────┐
│ 'hello' │
└─────────┘
LOWER(<str>)
SELECT LOWER('HELLO');
┌───────┐
│ hello │
└───────┘