many-many many (1 Viewer)

titus

New member
Local time
Yesterday, 21:19
Joined
Dec 19, 2006
Messages
2
I know how to do a many-many with a junction table but i have a database for tracking job interviews...

1. job opening info
2. appplicants general info
3. applicants status for the job

one applicant - job opening is many-many

Q- what to do with the applicant status table? this info is unique to the applicant BUT only for a specific Job opening.
 

namliam

The Mailman - AWF VIP
Local time
Today, 03:19
Joined
Aug 11, 2003
Messages
11,695
Pretty easy

To resolve the Many-many you have to make a junction table anyway.

tblJob
JobNumber (key)

tblApplication
ApplicationNumber (Key)

tblJobApplication
Jobnumber (Foreign Key)
Applicationnumber (Foreign Key)
(Above two make the key for this table)
ApplicationStatus
 

Users who are viewing this thread

Top Bottom