Snowflake launches new Array Functions

How Snowflake eases working with Data stored in Arrays

Christianlauer
2 min readSep 7, 2023

--

Photo by Fabian Mardi on Unsplash

When working with Snowflake SQL you will often come across data stored in Arrays. Here Snowflake now launches new functions which could help Data Engineers and Scientist.

Let’s look into the new functions and how they work — the first one is ARRAY_MAX :

ARRAY_MAX

This function returns the element with the highest value that is not a SQL NULL for a given input array[1]. Using it is pretty straight forward — here is a small example you can use as a blue print.

SELECT ARRAY_MAX([30, 0, NULL, 20, NULL]);

which produces the following output:

+------------------------------------+
| ARRAY_MAX([20, 0, NULL, 10, NULL]) |
|------------------------------------|
| 30 |
+------------------------------------+

ARRAY_MIN

Another new function when working with semi structured data is ARRAY_MIN with an input ARRAY it returns the element with the lowest value that is not a SQL NULL[1]. So it does exactly the opposite of ARRAY_MAX — so it makes sense Snowflake published them together;) So the following Query

SELECT ARRAY_MIN([20, 0…

--

--

Christianlauer

Big Data Enthusiast based in Hamburg and Kiel. Thankful if you would support my writing via: https://christianlauer90.medium.com/membership