snowflake.snowpark.functions.array_remove¶
- snowflake.snowpark.functions.array_remove(array: Union[Column, str], element: Union[Column, None, bool, int, float, str, bytearray, Decimal, date, datetime, time, bytes, NaTType, float64, list, tuple, dict]) Column[source]¶
Given a source ARRAY, returns an ARRAY with elements of the specified value removed.
- Parameters:
array – name of column containing array.
element – element to be removed from the array. If the element is a VARCHAR, it needs to be casted into VARIANT data type.
- Examples::
See also
ARRAY for more details on semi-structured arrays.