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
The order in which table aliases are references in the where clause must match the order in which the aliases are declared. For example:
where
select a.id from aaa as a, bbb as b where b.id = 7 and a.name = b.name;
returns the error message Cannot read property 'alias' of undefined however the structurally equivalent form (with the match on a.id instead of b.id)
a.id
b.id
select a.id from aaa as a, bbb as b where a.id = 7 and a.name = b.name;
produces no error.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The order in which table aliases are references in the
where
clause must match the order in which the aliases are declared. For example:returns the error message Cannot read property 'alias' of undefined however the structurally equivalent form (with the match on
a.id
instead ofb.id
)produces no error.
The text was updated successfully, but these errors were encountered: