In case of ANY ,conditions evaluates to False if inner query returns 0.
In case of ALL ,conditions evaluates to Tue if inner query returns 0.
Reason-:
Any is analogous to -$\text{there exists anyone for which it is true.}\equiv (\exists P(x)),P(x) \text{is any condition for any x}$
In order to return inner query $0$,the expression must be $ ¬(\exists x P(x))=\forall x P(x)^{'}$
i.e there is none for which $P(x)$ is true.
ALL is analogous to $\forall x P(x) \equiv ¬ (\exists x P(x)^{'}) $
In order to return inner query $0$,the expression must be $ ¬(¬(\exists x P(x)^{'})) $