gpt4 book ai didi

论坛网站Mysql结构

转载 作者:行者123 更新时间:2023-11-29 14:45:23 24 4
gpt4 key购买 nike

我正在建立一个论坛网站,但我无法决定如何创建它的 Mysql 结构。就像这里一样,用户提出很多问题,用户回答很多次,如果回答更多,这些问题都不会被覆盖。那么,我会为论坛网站创建一个问答表吗?如果我为每个用户只创建一张问答表,它们不会被覆盖吗?

最佳答案

用户表:

user_id (int, auto_increment)
username (varchar)
password (varchar, 32 (md5))
email (varchar (to recover password))

论坛表:

forum_id (int, auto_increment)
forum_title (varchar)
forum_category (int)

论坛子类别:

forum_subcat_id (int, auto_increment)
forum_id (int)
forum_subcat_title (varchar)
forum_subcat_description (text)

论坛主题:

thread_id (int, auto_increment)
thread_title (varchar)
thread_body (text, regular thread format)
forum_subcategory (int, where it belongs)
posted_by (int, the user that posts the thread)
posted_on (int, timestamp of the time the thread was posted)

评论表:

comment_id (int, auto_increment)
comment_body (text, comment text)
thread_id (int)
commented_by (int, user_id)
comment_time (int, timestamp of the time the comment was posted)

只是让您大致了解它应该是什么样子,当然您可以添加更多功能,例如评级系统、民意调查等。

关于论坛网站Mysql结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7068249/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com