What do the ALL and ANY operators do when used in a subquery?
QUESTION:
“What do the ALL and ANY operators do when used in a subquery?”
ANSWER:
ALL specifies that a condition is true for all values in a set of values. ANY specifies that the condition is true for at least one value in a set of values.
Responses