jooq:在 "is not null" 字段中输入别名

jooq: give an alias at a "is not null" field

如何为我正在使用的字段指定别名 is not null,例如

create.select(SOMETABLE.ID.isNotNull()

我无法在 isNotNull()

之后使用 .as(..)

谢谢

我使用的是旧版本的 jooq,3.4.x。 我认为这不重要,但我正在使用 apache derby。

使用DSL.field(Condition)Condition变成Field<Boolean>