Loading...
This page describes the LOWER function in Lenses SQL.
LOWER(strExpr)
Returns the expression in lowercase.
Available in:
Sample code:
USE `kafka`; SELECT LOWER(first_name), first_name FROM users-topic LIMIT 1;
Output:
{ "value": { "LOWER": "jose", "first_name": "Jose" } }
✓