Skip to content
New issue

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

IN Conversion (Oracle -> postgreSQL) #65

Open
ZhenNan2016 opened this issue Mar 28, 2023 · 0 comments
Open

IN Conversion (Oracle -> postgreSQL) #65

ZhenNan2016 opened this issue Mar 28, 2023 · 0 comments

Comments

@ZhenNan2016
Copy link

Hi
Excuse me.
Recently, I have been using sqlines to convert Oracle SQL statements to postgreSQL statements.
I have found that the functions under Linux are different from those online. The differences are as follows:

  1. Online tools: http://www.sqlines.com/online
    select * from a,b where a.id=b.id(+); => select * from a left outer join b on a.id=b.id;
    select * from a,b where a.id(+)=b.id => select * from a right outer join b on a.id=b.id;

Both statements are expected.

  1. Command line tools: sqlines master/bin/sqlines64
    select * from a,b where a.id=b.id(+); => select * from a,b where a.id=b.id(+);
    select * from a,b where a.id(+)=b.id; = > select * from a,b where a.id(+)=b.id;

It seems that there is no conversion to left join and right join. Why is this?

Now,my core needs are as follows:
I hope to use the command line tool sqlines64, which has the same functionality as using online tools. What do I need to do?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant