Last updated 1 year ago
Was this helpful?
expression: String to convert to lowercase.
Examples
LCASE is a synonym for .
LCASE
Returns the input expression with all the characters converted to lowercase.
SELECT LCASE('A GUIDE to data Lakehouses') -- a guide to data lakehouses
SELECT Category, LCASE(Category) FROM eth.recent_blocks LIMIT 3 -- Category, EXPR$1 -- WEAPON LAWS, weapon laws -- WEAPON LAWS, weapon laws -- WARRANTS, warrants
LOWER