Multiple autonumbers in a many to many relationship

E

Elizabeth

I have one table named Jobs and one named Customers. We sometimes build
more than one job per customer and occasionally have more than one customer
per job. I have created a join table to permit the many-to-many relationship.
The problem I have is that I can only have one autonumber per table.
The JobID is text due to how we name our jobs. However, I need to have
unique numbers for both the CustomerID and the CustomerJobID.
If anyone has any suggestions on how to accommodate this, I would
HIGHLY appreciate it. I am at a complete loss as to how to fix this.
 
D

Duane Hookom

Assuming your customer table has an Autonumber primary key of CustomerID, if
you want to use this value in related tables, the data type would be Numeric
Long (not autonumber). I'm not aware of any situation requiring or desiring
more than a single autonumber in a table.
 
F

Fred

Elizabeth, ther's one item in you post which Duane's post did not address
and Steve's structure conflicted with.

Your JobID fields in Job table and your junction table will be of the TEXT
type.


Fred
 
T

TedMi

In addition, if your business rules stipulate that a customer can be
assigned to a job only once, create a compound unique index on the two
fields CustomerID and JobID
-TedMi
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top