Đây là một bình luận được định dạng. Để lấy nội dung gần đây nhất, bạn cần sử dụng một truy vấn con ở đâu đó.
where yourDate = (subquery to find more recent date)
hoặc
from yourTable join (
subquery to get most recent date
plus a recordId
) temp on yourTable.recordID = temp.recordID
and yourTable.yourDate = temp.mostRecentDate
Các chi tiết là tùy thuộc vào bạn.