यह एक प्रारूपित टिप्पणी है। सबसे हाल की चीज़ पाने के लिए, आपको कहीं सबक्वायरी का उपयोग करने की आवश्यकता है।
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
विवरण आप पर निर्भर है।