Categories:

Semi-structured and structured data functions (Higher-order)

REDUCE¶

Reduces an array to a single value based on the logic in a lambda expression.

The REDUCE function takes an array, an initial accumulator value, and a lambda function. It applies the lambda function to each element of the array, updating the accumulator with each result. After processing all elements, REDUCE returns the final accumulator value.

See also:

Use lambda functions on data with Snowflake higher-order functions

Syntax¶

REDUCE( <array> , <init> [ <datatype> ] , <lambda_expression> )
Copy

Arguments¶

array

The array that contains the elements to be reduced. The array can be semi-structured or structured.

init [ datatype ]

The initial accumulator value.

lambda_expression

A lambda expression that defines the reduce logic on each array element.

The lambda expression must be specified in the following syntax:

<acc> [ <datatype> ] , <value> [ <datatype> ] -> <expr>
Copy

The acc argument is the accumulator, and the value argument is the current element being processed in the array.

Returns¶

This function can return a value of any data type.

If the input array is empty, then the function returns the initial value of the accumulator.

The function returns NULL in these cases:

  • The input array is NULL.

  • The initial value of the accumulator is NULL.

  • The lambda function returns NULL.

Usage notes¶

  • When the data type for a lambda value argument is explicitly specified, the array element is coerced into the specified type before lambda invocation. For information about coercion, see Data type conversion.

  • Type checking enforces that the initial value of the accumulator, the accumulator lambda argument, and the return value of the lambda execution all have the same logical and physical types. If casting is used to meet this requirement, the largest physical type of the three is used.

  • The value argument can have intermediate NULL values. For an example, see Skip NULL values in an array.

Examples¶

The following examples use the REDUCE function.

Calculate the sum of the values in an array¶

Use the REDUCE function to return the sum of the values in an array and specify 0 for the initial accumulator value:

SELECT REDUCE([1,2,3],
              0,
              (acc, val) -> acc + val)
  AS sum_of_values;
Copy
+---------------+
| SUM_OF_VALUES |
|---------------|
|             6 |
+---------------+

This example is the same as the previous example, but it specifies a structured array of type INT:

SELECT REDUCE([1,2,3]::ARRAY(INT),
              0,
              (acc, val) -> acc + val)
  AS sum_of_values_structured;
Copy
+--------------------------+
| SUM_OF_VALUES_STRUCTURED |
|--------------------------|
|                        6 |
+--------------------------+

Use the REDUCE function to return the sum of the values in an array and specify 10 for the initial accumulator value:

SELECT REDUCE([1,2,3],
              10,
              (acc, val) -> acc + val)
  AS sum_of_values_plus_10;
Copy
+-----------------------+
| SUM_OF_VALUES_PLUS_10 |
|-----------------------|
|                    16 |
+-----------------------+

Calculate the sum of the square of each value in an array¶

Use the REDUCE function to return the sum of the square of each value in the array, and specify 0 for the initial accumulator value:

SELECT REDUCE([1,2,3],
              0,
              (acc, val) -> acc + val * val)
  AS sum_of_squares;
Copy
+----------------+
| SUM_OF_SQUARES |
|----------------|
|             14 |
+----------------+

Skip NULL values in an array¶

In this example, the array argument includes NULL values. When this array is passed to the REDUCE function, the accumulator will have intermediate NULL values.

Use the REDUCE function to return the sum of the values in the array, and use the IFNULL function in the logic of the lambda expression to skip NULL values in the array. The lambda expression uses the IFNULL function to process each value in the array using the following logic:

  • If acc + val is NULL, then it becomes acc + 0.

  • If acc + val is not NULL, then it becomes acc + val.

Run the query:

SELECT REDUCE([1,NULL,2,NULL,3,4],
              0,
              (acc, val) -> IFNULL(acc + val, acc + 0))
  AS SUM_OF_VALUES_SKIP_NULL;
Copy
+-------------------------+
| SUM_OF_VALUES_SKIP_NULL |
|-------------------------|
|                      10 |
+-------------------------+

Generate string values¶

Use the REDUCE function to return a list of string values by concatenating each value in the array:

SELECT REDUCE(['a', 'b', 'c'],
              '',
              (acc, val) -> acc || ' ' || val)
  AS string_values;
Copy
+---------------+
| STRING_VALUES |
|---------------|
|  a b c        |
+---------------+

Use an array for the accumulator¶

Use the REDUCE function along with the ARRAY_PREPEND function in the logic of the lambda expression to return an array that reverses the order of the input array:

SELECT REDUCE([1, 2, 3, 4],
              [],
              (acc, val) -> ARRAY_PREPEND(acc, val))
  AS reverse_order;
Copy
+---------------+
| REVERSE_ORDER |
|---------------|
| [             |
|   4,          |
|   3,          |
|   2,          |
|   1           |
| ]             |
+---------------+

Use conditional logic¶

Use the REDUCE function along with the IFF function in the logic of the lambda expression to perform an action based on conditional logic similar to an if-then expression. This example uses the following logic in the lambda expression:

  • If the array value is less than seven, then square it and add it to the accumulator.

  • If the array value is greater than or equal to seven, then add it to the accumulator without squaring it.

SELECT REDUCE([5,10,15],
              0,
              (acc, val) -> IFF(val < 7, acc + val * val, acc + val))
  AS conditional_logic;
Copy
+-------------------+
| CONDITIONAL_LOGIC |
|-------------------|
|                50 |
+-------------------+

Reduce an array of elements in a table to a single value¶

Assume you have a table named orders with the columns order_id, order_date, and order_detail. The order_detail column is an array of the line items, their purchase quantity, and subtotal. The table contains two rows of data. The following SQL statement creates this table and inserts the rows:

CREATE OR REPLACE TABLE orders AS
  SELECT 1 AS order_id, '2024-01-01' AS order_date, [
    {'item':'UHD Monitor', 'quantity':3, 'subtotal':1500},
    {'item':'Business Printer', 'quantity':1, 'subtotal':1200}
  ] AS order_detail
  UNION SELECT 2 AS order_id, '2024-01-02' AS order_date, [
    {'item':'Laptop', 'quantity':5, 'subtotal':7500},
    {'item':'Noise-canceling Headphones', 'quantity':5, 'subtotal':1000}
  ] AS order_detail;

SELECT * FROM orders;
Copy
+----------+------------+-------------------------------------------+
| ORDER_ID | ORDER_DATE | ORDER_DETAIL                              |
|----------+------------+-------------------------------------------|
|        1 | 2024-01-01 | [                                         |
|          |            |   {                                       |
|          |            |     "item": "UHD Monitor",                |
|          |            |     "quantity": 3,                        |
|          |            |     "subtotal": 1500                      |
|          |            |   },                                      |
|          |            |   {                                       |
|          |            |     "item": "Business Printer",           |
|          |            |     "quantity": 1,                        |
|          |            |     "subtotal": 1200                      |
|          |            |   }                                       |
|          |            | ]                                         |
|        2 | 2024-01-02 | [                                         |
|          |            |   {                                       |
|          |            |     "item": "Laptop",                     |
|          |            |     "quantity": 5,                        |
|          |            |     "subtotal": 7500                      |
|          |            |   },                                      |
|          |            |   {                                       |
|          |            |     "item": "Noise-canceling Headphones", |
|          |            |     "quantity": 5,                        |
|          |            |     "subtotal": 1000                      |
|          |            |   }                                       |
|          |            | ]                                         |
+----------+------------+-------------------------------------------+

Use the REDUCE function to return the subtotal sum for all items in each order:

SELECT order_id,
       order_date,
       REDUCE(o.order_detail,
              0,
              (acc, val) -> acc + val:subtotal) subtotal_sum
  FROM orders o;
Copy
+----------+------------+--------------+
| ORDER_ID | ORDER_DATE | SUBTOTAL_SUM |
|----------+------------+--------------|
|        1 | 2024-01-01 |         2700 |
|        2 | 2024-01-02 |         8500 |
+----------+------------+--------------+

Use the REDUCE function to return a list of the items sold in each order:

SELECT order_id,
       order_date,
       REDUCE(o.order_detail,
              '',
              (acc, val) -> val:item || '\n' || acc) items_sold
  FROM orders o;
Copy
+----------+------------+-----------------------------+
| ORDER_ID | ORDER_DATE | ITEMS_SOLD                  |
|----------+------------+-----------------------------|
|        1 | 2024-01-01 | Business Printer            |
|          |            | UHD Monitor                 |
|          |            |                             |
|        2 | 2024-01-02 | Noise-canceling Headphones  |
|          |            | Laptop                      |
|          |            |                             |
+----------+------------+-----------------------------+