I have the following tables:
Blogs { BlogName }
BlogPosts { BlogName, PostTitle }
Blog posts is modeling an entity and a relationship at the same time which is invalid according to 6nf (according to the third manifesto).
In 6nf, it would be:
Blogs { BlogName }
Posts { PostTitle }
BlogPosts { BlogName, PostTitle}
If I wanted to order blog posts by a sequence nbr (just an example), that would be another table
BlogPostsSorting { BlogName, PostTitle , SortOrder }
Do I have it correct?