I don't think you need to have two identical tables in your database.
You can achieve what you need by doing multiple Queries on the same Table - but we can get to that later.
First . . . using only the Photo_Link_MOD table . . .
1. When I look at your data as you specified, I see that in Photo_Link_MOD - Unique_IDs 2 & 32 [not 2 & 33 as you said] have identical long/lat Coordinates.
2. I created a query on Photo_Link_MOD and put the Easting and Northing coordinate fields in the first two columns of the query [to make it easier for me to see what was going on] & then sorted the query on Easting_UTM - Ascending.
Except for 'Unique_ID' 1 - every other Unique_ID has an exact match in those two coordinate fields.
You might call them 'duplicate' rows - except that there are fields in the row that do NOT have matching data - Photo_Year, and the 4 IMG. . . fields [that include the photo year in the file paths].
Now that I have taken a closer look at your data and know what each record holds, please tell me again - what do you need your query to do?
If you leave out the Unique_ID field, the Photo_Year field and the Image path fields, - you can do a Group By and end up with a single row for each distinct pair of coordinates - like this sql:
Code:
SELECT Photo_Link_MOD.Easting_UTM, Photo_Link_MOD.Northing_UTM, Photo_Link_MOD.Project_Name, Photo_Link_MOD.Project_Area, Photo_Link_MOD.FSVeg_Location, Photo_Link_MOD.FSVeg_Stand_No
FROM Photo_Link_MOD
GROUP BY Photo_Link_MOD.Easting_UTM, Photo_Link_MOD.Northing_UTM, Photo_Link_MOD.Project_Name, Photo_Link_MOD.Project_Area, Photo_Link_MOD.FSVeg_Location, Photo_Link_MOD.FSVeg_Stand_No
ORDER BY Photo_Link_MOD.Easting_UTM;
This will condense your 61 records into 31 rows in which no two rows have the same Easting and Northing coordinate pair.
Paste that SQL into a new query in your db and let me know if that gets you PART of the way to where you want to be.
Then - tell me what needs to happen next.