建立一个包含答案、问题和类别的数据库

发布于 2024-10-12 08:39:11 字数 162 浏览 2 评论 0原文

我昨天对此提出了一个问题,但我对我的结构做了一些改变。

我有一张包含问题的表(类别 ID 的外键)。一张包含类别的表和一张包含带有问题表外键的答案的表(以及主键,即答案 ID 和外键 ID)。

但我的问题是,当一个问题属于多个类别时,如何构建数据库?

提前致谢!

I made a question yesterday about this, but I did some changes in my structure.

I have one table containing the questions(foreign key to the category ID). One table containing the categories and one table containing the answers with foreign key to the question table(and primary key which is the answer ID together with the foreign ID).

But my question is, how do I structure my database when one question belongs to multiple categories?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清泪尽 2024-10-19 08:39:11

在这种情况下,您需要一个问题和类别之间的“链接”表 - 类似于:

Question_Categories

QuestionID (FK into table Questions)
CategoryID (FK into table Category)

使用这种方法,任何问题都可以属于任意数量的类别,并且任何类别可以有任意数量的问题与之相关。

结构看起来像这样:

alt text

In that case, you need a "link" table between questions and categories - something like:

Question_Categories

QuestionID (FK into table Questions)
CategoryID (FK into table Category)

Using that approach, any question can belong to any number of categories, and any category can have any number of questions associated with it.

Structure would look something like this:

alt text

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文