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
Just thinking where we need subquery support in sea-orm
SELECT (SELECT ...) AS subquery FROM ...
... WHERE id IN (SELECT ...) ...
... FROM (SELECT ...) ...
... LEFT JOIN (SELECT ...) ON ...
How many kinds of subquery we want to support at this stage? I think supporting "select expression" and "conditional expression" are enough for now.
The text was updated successfully, but these errors were encountered:
I think as long as SeaQuery support these we are fine. from_subquery, in_subquery, join_subquery already exists.
Sorry, something went wrong.
subquery inside a column expression is weird enough, we might not try until someone has a very good use case
Successfully merging a pull request may close this issue.
Just thinking where we need subquery support in sea-orm
SELECT (SELECT ...) AS subquery FROM ...
... WHERE id IN (SELECT ...) ...
... FROM (SELECT ...) ...
... LEFT JOIN (SELECT ...) ON ...
How many kinds of subquery we want to support at this stage? I think supporting "select expression" and "conditional expression" are enough for now.
The text was updated successfully, but these errors were encountered: