Replies: 1 comment 1 reply
-
It seems that there is already something in regard to this. I'll have a look at |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Where conditions implementation are inefficient in AlaSQL compared to Join conditions.
select * from X, Y where Y.B = X.A and Y.C > 100
vs
select * from X join Y on Y.B = X.A and Y.C > 100
Idea: Should where conditions converted into Join conditions in some way to reuse the exisintg Join implementation. Is that feasible in AlaSQL?
Regards,
Pablo
Beta Was this translation helpful? Give feedback.
All reactions