LOWER

This page describes the LOWER function in Lenses SQL.

LOWER(strExpr)

Returns the expression in lowercase.

Available in:

ProcessorsSQL 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

Logo

2024 © Lenses.io Ltd. Apache, Apache Kafka, Kafka and associated open source project names are trademarks of the Apache Software Foundation.