I want to execute UNION of List<Select>
like
SELECT #1
UNION
SELECT #2
UNION
...
How can I do it with Jooq?
UPDATE: In my method I check a set of parameters and if their are not nul add subquery to the list. I need functionality like strings joiner.
So I solved my task by downgrading to raw sql and using Joiner(" UNION ").join(List<String>subqueries)
Maybe the following could be applied to call
union
on severalSelect
s.Note that I did not yet test it and you may need to alter it a bit to get it working. Alternatively:
A possible call could then be:
The static import mentioned by Lukas is also required here: