-
Notifications
You must be signed in to change notification settings - Fork 697
New issue
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
Add set operations #402
Comments
Agree, I surprisingly found there's no |
Is this being worked on? No movement on this issue for a long time. At the moment I drop into SQL to write |
Here is my attempt at UnionAll. turned out to be quite hairy. It can be improved slightly if Query.arguments() specifies it return type explicitly and matches the interface signature:
|
any update on this?.. mysql doesn't support full outer join and I will have to rely on union operation to implement the full outer join.. lack of this operation basically means no full outer join in mysql as well .. |
@Tapac Do you guys have any updates on this? |
UNION and UNION ALL supported |
…` from testing against PSQL as it returns "unexpected" result
…nd LIMIT in UNION clause
…e queries` from testing against PSQL as it returns "unexpected" result
It would be useful to have the set operations added:
union, union all, minus, intersect
I realize this can be handled with multiple select statements and then process the resulting lists, but they are more efficient in the database
The text was updated successfully, but these errors were encountered: