Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我能找到的大多数处理我的学习问题的现有帖子都已经过时了。
我正在尝试动态构建,以便可以使用条件进行某些更改。我正在尝试查找如何添加COUNT(*)到现有字段列表
COUNT(*)
SelectQuery query = create().selectQuery(); query.addSelect(TABLE.FIELD); // add COUNT(*)?
在动态构建查询时,我没有看到有关如何执行此操作的任何方法或 API 帮助。
只需使用DSL.count()
DSL.count()
query.addSelect(count());
以上假设是这样的静态导入:
import static org.jooq.impl.DSL.*;