For the complete documentation index, see llms.txt. This page is also available as Markdown.

LOWER

This page describes the LOWER function in Lenses SQL.

LOWER(strExpr)

Returns the expression in lowercase.

Available in:

Processors
SQL Studio

Sample code:

USE `kafka`;
SELECT 
    LOWER(first_name), 
    first_name 
FROM users-topic
LIMIT 1;

Output:

{
  "value": {
    "LOWER": "jose",
    "first_name": "Jose"
  }
}

Last updated

Was this helpful?