首次使用jooq用户。我需要将带有嵌套select的常规SQL语句转换为jooq。不知道我是否走在正确的道路上?我感谢任何帮助。
//select *
//from profile
//where (profile_id, effective_date) in (
// select profile_id, max(effective_date) as date
// from profile
// group by profile_id
// )
这就是我所拥有的,但不确定是否正确:
Result<Record> profiles = dsl_
.select(PROFILE.fields())
.from(PROFILE)
.where(PROFILE.PROFILE_ID, PROFILE.EFFECTIVE_DATE) in (create
.select(PROFILE.PROFILE_ID, max(PROFILE.EFFECTIVE_DATE) as date
.from(PROFILE)
.groupBy(PROFILE.PROFILE_ID)))
.fetch();
答案 0 :(得分:3)
您想使用DSL.row()
构造函数,以构建row value expression predicate。
以下是使用jOOQ的方法:
// Assuming this:
import static org.jooq.impl.DSL.*;
// Write
Result<Record> profiles = dsl_
.select(PROFILE.fields())
.from(PROFILE)
.where(row(PROFILE.PROFILE_ID, PROFILE.EFFECTIVE_DATE).in(
select(PROFILE.PROFILE_ID, max(PROFILE.EFFECTIVE_DATE).as("date"))
.from(PROFILE)
.groupBy(PROFILE.PROFILE_ID)
))
.fetch();