I am creating a forum page for which i have created following database schema:
Forum(questionId, postedByUserId, questionSubject, questionBody, TagIds);
Tags(tagId, tagName);
Entries in Forum will be something like:
(1, 1, 'sample subject', 'sample body', '1 4 2') ...
And sample entries of Tags will be:
(1, 'C'), (2, 'C++'), (3, 'Java'), (4, 'Data Structure') ...
Now the problem is that first normal form says that all the fields should be atomic which is not satisfied in this case but i think space is saved as if i were creating a new table of forum_tag(questionId, tagId); then i think this will take more space on database, but would be correct conceptually.
So i don't know what should i do whether to do what i am doing right now or to make the coloumns atomic as per the normalization.
Please explain which is better and why because there are many cases when i found such problem but all the time i remain ambiguous that what should i do!
So please help.
Thanks in advance :)