array_remove
array_remove介绍
array_remove(array, element) - 从数组中移除所有等于指定元素的项。
Examples:
> SELECT array_remove(array(1, 2, 3, null, 3), 3);
[1,2,null]
Since: 2.4.0
array_remove(array, element) - 从数组中移除所有等于指定元素的项。
Examples:
> SELECT array_remove(array(1, 2, 3, null, 3), 3);
[1,2,null]
Since: 2.4.0