I would like to check if value from a string type column (not a string itself) doesn't exist in another array type column.
I tries something like this:
~col('string_column').isin(col('array_column'))
but since they are not the same type it fails
and also:
~col('array_column').contains(col('string_column'))
but this fails due to datatype mismatch.
How can I solve this?