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
Does it support sub query and table alias?
select f.col1 A, f.col2 B, s.colx C from foo f, ( select colx from bar where colx=123) s where f.colx=s.colx
The text was updated successfully, but these errors were encountered:
Alias should not be a problem, since the from method only stores a string, I imagine this should work:
from
... .from("foo f") ...
About sub queries, this is one of the reasons I'm still thinking about using this lib.
Sorry, something went wrong.
If aliases work because the from is stored as a string, then I feel like subqueries should work too.
.from("("+subquery.str()+") sub")
No branches or pull requests
Does it support sub query and table alias?
The text was updated successfully, but these errors were encountered: