We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello I am trying to create a NATURAL LEFT JOIN but i don't see an option to.
NATURAL LEFT JOIN
Of the join types there are:
class JoinType(Enum): inner = "" left = "LEFT" right = "RIGHT" outer = "FULL OUTER" left_outer = "LEFT OUTER" right_outer = "RIGHT OUTER" full_outer = "FULL OUTER" cross = "CROSS" hash = "HASH"
Am I missing a way to create a NATURAL LEFT JOIN or is it not an option?
The text was updated successfully, but these errors were encountered:
Nevermind. I see that this is possible with USING instead of ON
USING
ON
Sorry, something went wrong.
No branches or pull requests
Hello I am trying to create a
NATURAL LEFT JOIN
but i don't see an option to.Of the join types there are:
Am I missing a way to create a
NATURAL LEFT JOIN
or is it not an option?The text was updated successfully, but these errors were encountered: