1:1 Relationship, Is this a good idea?

51 Views Asked by At

I have a database that has 5 1:1 relationships. I have a table called SoftwareVersion. Each SoftwareVersion has 5 phases of certification. The PhaseStatus names are the same for all 5 phases. I could not enforce referential integrity with one PhaseStatus table and a Ph0Status, Ph1Status, etc, field in the SoftwareVersion table. So I built 5 join tables. Now I have 5 1:1 Relationships. Every SoftwareVersion has multiple phases that have a status, but each software version only has one Phase 0 status. Is this a good example of a legitimate 1:1 relationship or is there a better way to build this?

1

There are 1 best solutions below

2
On

Every SoftwareVersion has multiple phases that have a status, but each software version only has one Phase 0 status.

I think you mean every SoftwareVersion has many phases, and each phase has one or more possible statuses at a time.

If so, from what I see you need only two tables. You need a PhaseStatus table of all allowable combinations of {phase,status}. Use a FK reference to that table as a constraint to make sure a SofwareVersion in any given phase has a valid status. You might also want tables that enumerate the domains of phases and statuses, in case they have other interesting properties, such as descriptions or perhaps time constraints.