starocean999 commented on PR #26725: URL: https://github.com/apache/doris/pull/26725#issuecomment-1809469774
we may need consider uncorrelated subquery and scalar subquery like bellow: select * from t1 where t1.k1 (not) in (select t2.k3 from t2) select * from t1 where (not) exists (select t2.k3 from t2) select * from t1 where t1.k1 < (select sum(t2.k3) from t2) select * from t1 where t1.k1 < (select sum(t2.k3) from t2 where t2.v2 = t1.k2) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
