6
Javaの専門家は、次のSQLステートメントの条件クエリの一部として分離クエリを書くのを助けてください。条件クエリの一部としてHibernate detachedクエリ
select A.*
FROM AETABLE A
where not exists
(
select entryid
FROM AETABLE B
where B.classpk = A.classpk
and B.userid = A.userid
and B.modifiedDate > A.modifiedDate
)
and userid = 10146
私は非常に似たようなことをしていて、投影が必要でした。 – jnrcorp