Skip to content

Returns the concatenatation of two MAPs.

MAP_CAT( <map1>, <map2> )
ArgumentsDescription
<map1>The source MAP.
<map2>The MAP to be appended to map1.

Map.

SELECT MAP_CAT({'a':1,'b':2,'c':3}, {'c':5,'d':6});
┌─────────────────────────────────────────────┐
│ map_cat({'a':1,'b':2,'c':3}, {'c':5,'d':6}) │
├─────────────────────────────────────────────┤
│ {'a':1,'b':2,'c':5,'d':6} │
└─────────────────────────────────────────────┘