Say I'm using referential integrity and I have a relationship between two entity's (A and B), and the minimum cardinality on both sides is 1. That would mean before table A can be filled, table B needs a record that table A can be linked to. But since the minimum cardinality is 1 on both sides, the same can be said the other way around, i.e. there needs to be a record in table A that a record in table B can be linked with, before the record can be inserted in table B.
Now that seems problematic, since if I understand correctly, referential integrity forces you to link the record to another record in the other table, in both scenario's, meaning I cant enter any records in either tables...
Can someone explain what would happen in this scenario?
I asked this same question to my teacher, and she says a relationship with a minimum of cardinality 1..1 (is this notation correct?) is certainly possible, but she was unable to explain to me which table should be filled first.
Sorry I don't have any concrete examples, I was just thinking about this randomly... If you can elaborate by using a practical example in your answer, that would be great.