Skip to content

Objects

$$ROOT

Specifying $$ROOT as a column alias sets the value to root object but only works with aggregates (unless contained in array sub select). This is useful when you want to return the root object as a column.

Example $$ROOT usage
SELECT 
    t AS `$$ROOT` 
FROM 
    (
    SELECT 
        id
        ,`First Name`
        ,`Last Name`
        ,LENGTHOFARRAY(Rentals,'id')  AS numRentals 
    FROM customers) 
AS t

Merge Fields into Object

Only available in aggregates. Use a SELECT without specifying a table to create a new object.

Creating a new object
SELECT 
    (SELECT id,`First Name` AS Name) AS t 
FROM 
    customers

Create a new Object and assign to root

Creating a new object and assigning to root
SELECT 
    (SELECT id,`First Name` AS Name) AS t1
    ,(SELECT id,`Last Name` AS LastName) AS t2
    ,MERGE_OBJECTS(t1,t2) AS `$$ROOT`  
FROM 
    customers

Supported Object Functions

PARSE_JSON

PARSE_JSON(expr)

Parses the JSON string. Use in conjunction with ARRAY_TO_OBJECT to convert an array to an object.

Example PARSE_JSON usage
SELECT 
    id,
    ARRAY_TO_OBJECT(PARSE_JSON('[{"k":"val","v":1}]')) AS test
FROM `customers`;

MERGE_OBJECTS

MERGE_OBJECTS(expr)

Example MERGE_OBJECTS usage
SELECT 
    id,
    MERGE_OBJECTS(`Address`,PARSE_JSON('{"val":1}')) AS test
FROM `customers`;
Example MERGE_OBJECTS usage with sub select
SELECT 
    id,
    MERGE_OBJECTS(`Address`,(SELECT 1 AS val)) AS test
FROM `customers`;