how to get the condition in join query #611
-
this is the query need only this b.tab1 = e.tab1 |
Beta Was this translation helpful? Give feedback.
Answered by
georgesittas
Oct 19, 2022
Replies: 1 comment 1 reply
-
How about the following? >>> for eq in parse_one(<your sql>).find_all(exp.EQ):
... print(eq)
...
b.tab1 = e.tab1 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
georgesittas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How about the following?