How to use ANY instead of IN in a WHERE clause?

There are two variants of IN expressions: expression IN (subquery) expression IN (value [, …]) Similarly, two variants with the ANY construct: expression operator ANY (subquery) expression operator ANY (array expression) A subquery works for either technique, but for the second form of each, IN expects a list of values (as defined in standard SQL) … Read more