We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
array_except
list_except
select array_except([1, 2, 3, 4], [2, 3, 1, 5]); ---- [4, 5]
select array_except([1, 2, 2, 3, 4], [1, 3, 1, 5]); ---- [2, 4]
No response
The text was updated successfully, but these errors were encountered:
ARRAY
Plan to work on this
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge?
Summary
array_except
list_except
Spark SQL: Returns all elements from col1 array but not in col2 array.
Examples:
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: