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
Describe the bug xSharp error when using SQL Select with join
To Reproduce Code to reproduce the behavior:
create cursor abc (mkey i, mident c(10)) insert into abc (mkey,mident) values (1,"a") insert into abc (mkey,mident) values (2,"b") insert into abc (mkey,mident) values (3,"c") create cursor def (mkey_fk i,mtext c(10)) insert into def (mkey_fk,mtext) values (1,"inf1") insert into def (mkey_fk,mtext) values (1,"inf2") insert into def (mkey_fk,mtext) values (2,"infA") insert into def (mkey_fk,mtext) values (3,"to_del") insert into def (mkey_fk,mtext) values (4,"to_del") SELECT * FROM abc JOIN def ON abc.mkey=def.mkey_fk INTO cursor ghi
Expected behavior Full Support of SQL SELECT incl JOIN
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
xSharp error when using SQL Select with join
To Reproduce
Code to reproduce the behavior:
Expected behavior
Full Support of SQL SELECT incl JOIN
The text was updated successfully, but these errors were encountered: