建立一个包含答案、问题和类别的数据库
我昨天对此提出了一个问题,但我对我的结构做了一些改变。
我有一张包含问题的表(类别 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这种情况下,您需要一个问题和类别之间的“链接”表 - 类似于:
Question_Categories
使用这种方法,任何问题都可以属于任意数量的类别,并且任何类别可以有任意数量的问题与之相关。
结构看起来像这样:
In that case, you need a "link" table between questions and categories - something like:
Question_Categories
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:
请参阅什么是最有效的方法将标签存储在数据库中?
See What is the most efficient way to store tags in a database?