Suppose I have a table Articles
. An article
can have only one topic
attached to it. But it is also possible that article has no topic
.
Should I make
topic
a new column inArticles
table? ORShould I create a table
topics2articles
and map together atopic
witharticle
? (In this case I do not have to add extra column forArticles
table.
I don't like the 1st solution because then some rows will have NULL
in them? Or is this reasonable to have NULL
in this case?
What do you think?
Thanks, Boda Cydo.