java - jOOQ - array of select query -


does jooq support array of select query? want following:

select table.*, array(select another_table.id another_table ...)   table; 

i tried experimenting dsl.array(context.select(...).asfield()) generates array[(select ...)] instead of array(select(...)).

i should have done:

postgresdsl.array(context.select(...)) 

note using postgresdsl instead of generic dsl , not applying .asfield() select, inline inner select query outer query.


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -