Here I've an array ["chair","desk","charger"], I'd like to check if a different array contains any the elements in the first array.
Example:
["chair","desk"] //returns true;
["screen","charger","computer"] //returns true;
["calendar", "screen"] //returns false;
How could this be done in Presto SQL?