UNNEST (Lakehouse v2)
Expands an array into a set of rows.
Analyze Syntax
Section titled “Analyze Syntax”func.unnest([1, 2, 3])Analyze Examples
Section titled “Analyze Examples”# Used in FROM clause# SELECT * FROM UNNEST([1, 2, 3])SQL Syntax
Section titled “SQL Syntax”UNNEST([1, 2, 3])SQL Examples
Section titled “SQL Examples”SELECT * FROM UNNEST([1, 2, 3]) AS t(val);
┌─────┐│ val │├─────┤│ 1 ││ 2 ││ 3 │└─────┘