I have a table that looks like below:
ID    Address1       City   State    Zip      YearBuilt 
1    704 Grant Ave    X        Y     11111      2000
2    704 Grant Ave    X        Y     11111      2000
3    704 Grant Ave    X        Y     11111      2000
4    303 2nd St       A        B     22222      1900
5    303 2nd St       A        B     22222      1900
6    44 North ST      C        D     33333      1950
Now I want to have only those rows which have distinct Address1, City, State, and Zip. ID cannot be used as an identifier because for same address it has a different ID. I'm okay to keep the top ID.
 
     
    