我的博客上有一个评论表。
comment
- id (PK)
- post_id (FK)
- user_id (FK)
- comment
我应该分成 3 张桌子并这样做吗?
comment
- id (PK)
- comment
user_comment
- comment_id (PK, FK)
- user_id (PK, FK)
post_comment
- post_id (PK, FK)
- comment_id (PK, FK)
这会是一个更好的设计吗?欢迎任何其他建议。