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.
私は extId == パラメータが与えられたレコードを選択する必要があり、それらのレコードから最新の日付 (createDateプロパティ) が必要です。私はこれを試しています:
createDate
select r from Record r where r.extId=:eid and r.createDate=(select max(r.createDate) from r where r.id=r.id)
単純に最新のレコードを返します。お願い助けて。
このクエリを試すことができます。それは私にとってはうまくいきます。
from Record r where r.extId=:eid and r.createDate IN (select max(r2.createDate) from Recordr2)