Function Return Type Description Example Result array_append(anyarray,anyelement) anyarray append an element to the end of an array array_append(ARRAY[1,2], 3) {1,2,3} array_cat(anyarray,anyarray) anyarray concatenate two arrays array_cat(ARRAY[1,2,3…