ANY
ANY (or SOME) compares to a subquery: WHERE marks > ANY (SELECT marks FROM sports); true if greater than at least one sports mark. ALL would mean greater than every one.
IN is = ANY. Freshers can say IN and MAX/MIN instead of ANY/ALL if it is clearer — but know the words for MCQs.
Trap — mixing ANY with ALL in a spoken answer.
On the example next to this theory: ANY: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
Exam tip
marks > ANY (SELECT marks FROM sports). IN = ANY.