I have a table of properties, a table of land-owners, and a link table to related them. The relationship between properties and land-owners is one-to-many. I would like to use a query to build a datasheet view that displays the land-owners joined to each of the properties. I have been successful at getting the LEFT JOIN to work but I would prefer to display only unique records from the left table in the results (null values in blank cells acceptable).
Current result:
PID OWNERID
1 32
1 23
2 45
2 18
2 12
3 98
3 12
3 23
Desired result:
PID OWNERID
1 32
23
2 45
18
12
3 98
12
23
Is this possible?
