如何处理web应用程序数据库中的注释


How to handle comments in a web application database

最快的方法是什么?应该为每个"主题"创建一个索引的大表,还是为每个主题创建一个表更好?

谢谢

绝对不要为每个主题创建一个表。只需创建一个注释表:

topic_comments
--------------
id
topic_id
comment_text
comment_author_id, etc