Skip to content

Returns the values in a map.

MAP_VALUES( <map> )
ArgumentsDescription
<map>The input map.

Array.

SELECT MAP_VALUES({'a':1,'b':2,'c':3});
┌─────────────────────────────────┐
│ map_values({'a':1,'b':2,'c':3}) │
├─────────────────────────────────┤
│ [1,2,3] │
└─────────────────────────────────┘