here is the scenario: I am trying to create an owners certificate where there may be 1,2,or more owners for a single item (investment property). I have a many-to-many-to-many relationship... a customer can own more than one property, either singely or in multiple buying units,
Property <<-->>BuyingUnit<<-->>Customer
I have a Cust table holding demographic info on individuals, a Property table holding info on individual properties, and a BuyingUnit table holding info on groups of customers that own a particular property.
When I create a query to isolate the owners of a property I get a row for every hit, if there are two owners, 2 records, if there are 6 owners, 6 records.
How can I create a single concatenated field of all the owner names? ideally this would happen at the query level so the report generation could happen without operator intervention.
Property <<-->>BuyingUnit<<-->>Customer
I have a Cust table holding demographic info on individuals, a Property table holding info on individual properties, and a BuyingUnit table holding info on groups of customers that own a particular property.
When I create a query to isolate the owners of a property I get a row for every hit, if there are two owners, 2 records, if there are 6 owners, 6 records.
How can I create a single concatenated field of all the owner names? ideally this would happen at the query level so the report generation could happen without operator intervention.