java – Jooq嵌套选择

前端之家收集整理的这篇文章主要介绍了java – Jooq嵌套选择前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第一次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
最佳答案
您想使用DSL.row()构造函数,以构建row value expression predicate.

以下是使用jOOQ的方法

// Assuming this:
import static org.jooq.impl.DSL.*;

// Write
Result
原文链接:https://www.f2er.com/java/437266.html

猜你在找的Java相关文章