postgres 'WITH' clause with jooq
问题 Hell, I can't find a way to use the postgres 'WITH' clause with JOOQ. Could you please let me know if it's supported by JOOQ? Thanks 回答1: Common table expressions (the " WITH clause") are currently not supported in jOOQ. There is a pending feature request on the jOOQ road map for CTE's: #454. As of jOOQ 3.0, there are currently no plans of actually supporting it, though. (Your best option to push things a little bit is to discuss this topic on the jOOQ user group) 来源: https://stackoverflow