View on GitHub

JODA - JSON On Demand Analysis

Efficient data wrangling for semi-structured JSON documents

LOWER - String

Converts the given string to lower case

Input parameters

Name Type Optional Description
str String False  

Output

String: UTF-8 lower-case representation of string

Usage

LOWER(<str>)

Examples

Example 1

Query

LOAD tmp
AS ('': LOWER("  StRiNg  "))

Result

"  string  "