How can I get sqlglot to transpile this correctly? #1902
Closed
ikasovitch
started this conversation in
General
Replies: 1 comment 11 replies
-
Hey @ikasovitch 👋 This seems reasonable, as we don't have extended support for the old-style joins of Oracle (i.e. I can take a look soon and see if I can fix this easily. Thanks for the report! |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Thank you very much for implementing sqlglot. It is very helpful!
I bumped into an issue while testing it out. Maybe I am doing something wrong so please let me know how to fix my code.
I got the following result:
SELECT * FROM a, b WHERE a.c = b.c
I was expecting that the output result will have something with a left outer join but as you can see it didn't. See here - https://wiki.postgresql.org/wiki/Oracle_to_Postgres_Conversion#Outer_Joins
Can you advise how to make the transpile function work as I expect?
Beta Was this translation helpful? Give feedback.
All reactions