it seems that using ActiveJDBC is very limiting
I have three tables a, b and c they all have text column I want the union of of all these table
I tried
LazyList<A> list = A.findBySQL("(select name as text from a) union (select version as text from b) union (select id as text from c)
and I tried
LazyList<A> list = A.findBySQL("select a.* from ((select name as text from a) union (select version as text from b) union (select id as text from c)) as a");
neither worked. Is there any other way to get the union of those three tables?