Unsupported SubQuery Expression : Correlating expression cannot contain unqualified column references
You can find someone having the same problem here and the corresponding JIRA ticket.
Based on those answers, I would advise you to try :
Select a,b,c from t1 where a in (0,100) AND t1.b in (select b from t2 where d>2 GROUP BY 1 ) LIMIT 1;