Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 869 Bytes

File metadata and controls

33 lines (22 loc) · 869 Bytes
title JSON_ARRAY_TRANSFORM

import FunctionDescription from '@site/src/components/FunctionDescription';

Transforms each element of a JSON array using a specified transformation Lambda expression. For more information about Lambda expression, see Lambda Expressions.

Syntax

ARRAY_TRANSFORM(<json_array>, <lambda_expression>)

Return Type

JSON array.

Examples

In this example, each numeric element in the array is multiplied by 10, transforming the original array into [10, 20, 30, 40]:

SELECT ARRAY_TRANSFORM(
    [1, 2, 3, 4],
    data -> (data::Int * 10)
);

-[ RECORD 1 ]-----------------------------------
array_transform([1, 2, 3, 4], data -> data::Int32 * 10): [10,20,30,40]