SELECT a.CustomerId, a.CustomerName, a.UpdateDate, b.DateofBirth
FROM Table1 a
INNER JOIN (SELECT CustomerId, MAX(UpdateDate) as UDate
FROM Table1
GROUP BY CustomerId
) maxdate ON a.CustomerId = maxdate.CustomerId
AND a.UpdateDate = maxdate.UDate
INNER JOIN Table2 b ON a.CustomerId = b.CustomerId
Sử dụng SELECT DISTINCT nếu bạn có nhiều bản ghi cho một bảo mật và bản cập nhật.