I have two simple tables
linked address table (LAT) and a Properties table (PT)
the LAT has fields
LinkCode Text (from one of many types of contact)
LinkId Number( As above )
AddressId Number (The Primary Key of the PT)
The PT has fields
AddressId Autnum
followed by address details
I have a query that I use to access data it looks like:
SELECT [Address Link].[Link Code], [Address Link].[Link Id], Properties.*
FROM Properties RIGHT JOIN [Address Link] ON Properties.[Property Code] = [Address Link].AddressId;
What I am trying to achieve is a reuse of addresses - what I get is just an increase of the same address and the links remain un-updated.
Can anyone see fundamental flaws in this and point me in the right direction please ....
linked address table (LAT) and a Properties table (PT)
the LAT has fields
LinkCode Text (from one of many types of contact)
LinkId Number( As above )
AddressId Number (The Primary Key of the PT)
The PT has fields
AddressId Autnum
followed by address details
I have a query that I use to access data it looks like:
SELECT [Address Link].[Link Code], [Address Link].[Link Id], Properties.*
FROM Properties RIGHT JOIN [Address Link] ON Properties.[Property Code] = [Address Link].AddressId;
What I am trying to achieve is a reuse of addresses - what I get is just an increase of the same address and the links remain un-updated.
Can anyone see fundamental flaws in this and point me in the right direction please ....