I have a table with fields that are duplicated and the only difference is the effective date. What I want my query to do is to find the latest effective date only for the duplicated fields. Example
abc 2006-08-28
abc 2006-09-29
abc 2006-10-28
abc 2006-10-29
def 2006-03-04
def 2006-05-05
def 2006-08-08
I would want my query to show only the record abc with the date 2006-10-29 and
the record def with 2006-08-08
I am hoping here is a easy way to accomplish this.
abc 2006-08-28
abc 2006-09-29
abc 2006-10-28
abc 2006-10-29
def 2006-03-04
def 2006-05-05
def 2006-08-08
I would want my query to show only the record abc with the date 2006-10-29 and
the record def with 2006-08-08
I am hoping here is a easy way to accomplish this.