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
Support new features on parser
For the following SQL, we can only retrieve two table entities: t1 and users. However, the derived table (subquery) t2 should also be collectible:
t1
users
t2
SELECT id FROM t1, (select name from users) as t2
It should be possible to collect the queried fields id, name, and total from the source table u so that they can be referenced in the outer query:
id
name
total
u
SELECT xxx FROM (SELECT id, name, (select count(*) as total) FROM users) u
The text was updated successfully, but these errors were encountered:
JackWang032
No branches or pull requests
Topic
Support new features on parser
Description
Derived Table Collection
For the following SQL, we can only retrieve two table entities:
t1
andusers
. However, the derived table (subquery)t2
should also be collectible:Query Field Collection
It should be possible to collect the queried fields
id
,name
, andtotal
from the source tableu
so that they can be referenced in the outer query:The text was updated successfully, but these errors were encountered: