array_remove ( anycompatiblearray, anycompatible ) → anycompatiblearrayRemoves all elements equal to the given value from the array. The array must be one-dimensional. Comparisons are done using IS NOT DISTINCT FROM semantics, so it is possible to remove NULLs.array_remove(ARRAY[1,2,3,2], 2) → {1,3}