Structure
TableA (each row in TableA can map to one or more row in circle)
Id
Name
TableB (each row in TableB can map to only one row in TableA)
Id
TableAId
UniqueValue
Example Data
TableA
1,Sooprise
TableB
1,1,something
2,1,somethingElse
So in this case, "UniqueValue" can only associate themselves to one row in TableA. Would it make more sense to combine the tables?
Structure
TableC
Id
Name
UniqueValue
Example Data
TableC
1,Sooprise,something
2,Sooprise,somethingElse
I'm leaning more towards the first choice, but since there is a one to one mapping from B to A, these tables can be combined. I do understand that combining the tables would result in a data redundancy (Name) but maybe there can be exceptions made for not using two relational tables?