I've posted this on another forum, but I'm not getting any help on it. Let me know if I need to explain it in more detail.
I have one table containing a list of addresses:
Address
1301 Main St.
I have another table containing names :
Name 1
John
I have yet another table containing names:
Name 2
Chris
The primary key for the address table matches up with the primary keys in the name tables. I need to write a query that will pair the addresses in the address table with the names from each of the name tables. It should look like this:
Address..................Name
1301 Main St. .........John
1301 Main St. .........Chris
Can anyone help? Thanks.
I have one table containing a list of addresses:
Address
1301 Main St.
I have another table containing names :
Name 1
John
I have yet another table containing names:
Name 2
Chris
The primary key for the address table matches up with the primary keys in the name tables. I need to write a query that will pair the addresses in the address table with the names from each of the name tables. It should look like this:
Address..................Name
1301 Main St. .........John
1301 Main St. .........Chris
Can anyone help? Thanks.