jOOQ是否支持select查询数组?我想要以下内容:
select table.*, array(select another_table.id from another_table where ...)
from table;
Run Code Online (Sandbox Code Playgroud)
我试过试验,DSL.array(context.select(...).asField())但这产生array[(select ...)]而不是array(select(...)).