I am trying to use an '= ALL' using a parameter and a set of results from a sub-query, like this:
SELECT table.something
FROM Table t
WHERE t.param = ALL (... sub-query...)
is this possible? because I know what the result should be and I'm not getting any results at all...
t.param? Wouldn't it have to be an array or something?