How to express this with jOOQ "Select alias.*, otherAlias.Column From .." How to express this with jOOQ "Select alias.*, otherAlias.Column From .." postgresql postgresql

How to express this with jOOQ "Select alias.*, otherAlias.Column From .."


Assuming that you're using jOOQ 3.11 (which added support for unqualified asterisks and qualified asterisks), you can just write

alias.asterisk()

Or even, using jOOQ's scala extensions

alias.*

This is especially powerful when using the code generator.