Skip to main content

UNNEST

Unnests the array and returns the set of elements.

Syntax

UNNEST( <array> )

Examples

SELECT UNNEST([1, 2]);

┌─────────────────┐
│ unnest([1, 2])
├─────────────────┤
1
2
└─────────────────┘

-- UNNEST(array) can be used as a table function.
SELECT * FROM UNNEST([1, 2]);

┌─────────────────┐
value
├─────────────────┤
1
2
└─────────────────┘
Try Databend Cloud for FREE

Multimodal, object-storage-native warehouse for BI, vectors, search, and geo.

Snowflake-compatible SQL with automatic scaling.

Sign up and get $200 in credits.

Try it today