【发布时间】:2018-01-27 03:47:38
【问题描述】:
jOOQ 是否支持选择查询数组?我想要以下内容:
select table.*, array(select another_table.id from another_table where ...)
from table;
我尝试使用DSL.array(context.select(...).asField()) 进行试验,但这会生成array[(select ...)] 而不是array(select(...))。
【问题讨论】:
标签: java arrays postgresql jooq