我正在建立一個論壇網站,但我無法決定如何創建它的Mysql結構。就像在這裏一樣,用戶提出了很多問題,用戶多次回答他們,如果他們回答更多,他們都不會被覆蓋。所以,我會爲論壇網站的問題和答案表創建一個表格。如果我爲每個用戶創建一個問題表和答案表,他們不會被覆蓋嗎?論壇網站的Mysql結構
0
A
回答
1
用戶表:
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)
只是給你一個廣泛的思路應該是什麼樣子,當然你也可以添加更多的功能,如評級體系,民意調查等
0
這就是爲什麼你不會爲問題和答案創建一個表。相反,你會有兩張桌子。例如:
Question
========
question_id
question_text
和
Answer
======
answer_id
user_id
question_id
date_answered
answer_text
當然,上述user_id說明意味着另一個表用於包含用戶。
相關問題
- 1. 手機版網站論壇
- 2. Google網上論壇集成到網站
- 3. 修改VBulletin的論壇結構
- 4. 適合論壇的MVC結構
- 5. php論壇類型流動網站
- 6. 網站地圖使用論壇生成
- 7. 多個論壇數據庫結構
- 8. 論壇db結構:Postcount分開?
- 9. 論壇MySQL查詢
- 10. 在我的網站上獲得討論論壇/查詢支持
- 11. MySQL的PHP論壇列表
- 12. 的MySQL/PHP論壇問題,選擇論壇要查看
- 13. 在網頁上的評論論壇
- 14. PHP + MySQL論壇顯示
- 15. PHP MYSQL論壇傳情,howto?
- 16. 我的網站的PHP論壇的唯一登錄
- 17. Nginx的配置子站點和論壇
- 18. 與現有網站輕鬆集成的PHP論壇軟件?
- 19. 在自己的網站集成論壇框架
- 20. cakephp網站phpBB或簡單的機器論壇可能嗎?
- 21. SVG資源?好的論壇,幫助網站,例子?
- 22. 谷歌不索引我的網站,但索引論壇?
- 23. Phpbb3論壇與現有網站的集成
- 24. 將論壇軟件整合到現有的Zend網站中
- 25. 爲corona sdk的論壇/網站創建應用程序
- 26. 如何在我的網站上製作基本論壇主題?
- 27. 如何在我的Joomla網站上找到Frenzy論壇首頁?
- 28. 將信息存儲在類似網站的論壇中
- 29. 用php的論壇oop mvc的最佳結構?
- 30. ASP.NET網站結構