Skip to content

Converts a string to lowercase.

func.lower(<str>)
func.lower('HELLO')
┌─────────┐
'hello'
└─────────┘
LOWER(<str>)
SELECT LOWER('HELLO');
┌───────┐
│ hello │
└───────┘