I need to be able to chain an arbitrary number of sub-selects with UNION
using ActiveRelation.
I'm a little confused by the ARel implementation of this, since it seems to assume UNION
is a binary operation.
However:
( select_statement_a ) UNION ( select_statement_b ) UNION ( select_statement_c )
is valid SQL. Is this possible without doing nasty string-substitution?
You can do a bit better than what Adam Lassek has proposed though he is on the right track. I've just solved a similar problem trying to get a friends list from a social network model. Friends can be aquired automatically in various ways but I would like to have an ActiveRelation friendly query method that can handle further chaining. So I have
which takes advantage of Squeels subquery support. Generated SQL is
An alternative pattern where you need a variable number of components is demonstrated with a slight modification to the above code
And here is a rough guess as to the solution for the OP's exact question