View on GitHub

JODA - JSON On Demand Analysis

Efficient data wrangling for semi-structured JSON documents

CONCAT - String

Concatenates two string values

Input parameters

Name Type Optional Description
str1 String False First string to concatenate
str2 String False Second string to concatenate

Output

String: combination of str1 and str2

Usage

CONCAT(<str1>, <str2>)

Examples

Example 1

Query

LOAD tmp
AS ('': CONCAT("Hello", "World"))

Result

"HelloWorld"