Ok -
Let's say I've got two tables, Order & CustID.
The CustID table is simple. 2 fields. An ID field, (pk) which is a 6 digit unique ID number, and then the customer name & address (single memo field).
Now the Order table is a little meatier. In addition to other various fields, I have three fields that I want to link back to the CustID table. [ul][li]One field is for the customer's office that issued the order[/li][li]another field is for the customer's office that is administering the order[/li][li]and finally a field to indicate with customer's office is going to pay for the order[/li][/ul]
The thing is that I don't want to make three tables(issue, administer, payment) when each table uses all the same codes. This is silly, I know. For example, code ABC123 could be the Issuing office and the Administering office, but code 987REW is the Payment office. Or all three could be different. Or all three could be the same. But the codes are all in the same "family" (Which I didn't create, and I can't control.)
How do I satisfy all three fields in the Order table using just one CustID table?
Is this clear?
Thanks,
Rob
Let's say I've got two tables, Order & CustID.
The CustID table is simple. 2 fields. An ID field, (pk) which is a 6 digit unique ID number, and then the customer name & address (single memo field).
Now the Order table is a little meatier. In addition to other various fields, I have three fields that I want to link back to the CustID table. [ul][li]One field is for the customer's office that issued the order[/li][li]another field is for the customer's office that is administering the order[/li][li]and finally a field to indicate with customer's office is going to pay for the order[/li][/ul]
The thing is that I don't want to make three tables(issue, administer, payment) when each table uses all the same codes. This is silly, I know. For example, code ABC123 could be the Issuing office and the Administering office, but code 987REW is the Payment office. Or all three could be different. Or all three could be the same. But the codes are all in the same "family" (Which I didn't create, and I can't control.)
How do I satisfy all three fields in the Order table using just one CustID table?
Is this clear?
Thanks,
Rob