我有以下表格:
Blogs { BlogName }
BlogPosts { BlogName, PostTitle }
博客文章同时建模一个实体和一个关系,根据 6nf(根据第三个宣言)无效。
在 6nf 中,它将是:
Blogs { BlogName }
Posts { PostTitle }
BlogPosts { BlogName, PostTitle}
如果我想按顺序排列博客文章 nbr(只是一个例子),那将是另一个表
BlogPostsSorting { BlogName, PostTitle , SortOrder }
我说的对吗?