MAP_VALUES (Lakehouse v1)
Returns the values in a map.
SQL Syntax
Section titled “SQL Syntax”MAP_VALUES( <map> )Arguments
Section titled “Arguments”| Arguments | Description |
|---|---|
<map> | The input map. |
Return Type
Section titled “Return Type”Array.
SQL Examples
Section titled “SQL Examples”SELECT MAP_VALUES({'a':1,'b':2,'c':3});
┌─────────────────────────────────┐│ map_values({'a':1,'b':2,'c':3}) │├─────────────────────────────────┤│ [1,2,3] │└─────────────────────────────────┘