これはフォーマットされたコメントです。最新のものを取得するには、どこかでサブクエリを使用する必要があります。
where yourDate = (subquery to find more recent date)
プレ>または
from yourTable join ( subquery to get most recent date plus a recordId ) temp on yourTable.recordID = temp.recordID and yourTable.yourDate = temp.mostRecentDate
プレ>詳細はあなた次第です。