似乎使用 ActiveJDBC 非常有限
我有三个表 a、b 和 c 他们都有文本列我想要所有这些表的联合
我试过了
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)
我试过了
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");
都没有工作。有没有其他方法可以合并这三个表?