第一次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
最佳答案
您想使用
原文链接:https://www.f2er.com/java/437266.htmlDSL.row()
构造函数,以构建row value expression predicate.
以下是使用jOOQ的方法:
// Assuming this:
import static org.jooq.impl.DSL.*;
// Write
Result