Create a Dealer table with a DealerID as PK
Create a Car table with CarID as PK, and DealerID as FK
Create a Job table with JobID as PK, and CarID as FK
This will allow you to have many dealers, each one havig many cars, and each car having many jobs.
If you would like a single car serviced by many dealers, then that will require a DealerID FK in the job table.
mmcdonal
|