Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道在 MySQL 数据库中存储内容编辑的最佳方式是什么?
我首先要做类似的事情Current_COMMENT, First_COMMENT,并将原始评论first_COMMENT和最新评论(我将显示的评论)存储在Current_COMMENT.
Current_COMMENT, First_COMMENT
first_COMMENT
Current_COMMENT
但后来我意识到存储每个推荐编辑会更好,这样我就可以回顾所有修订。
我的问题是,将其存储在数据库中的最佳方法是什么?如果我可以存储(几乎)无限量的评论修订,那就太好了。
任何帮助深表感谢!
使用列作为创建日期,因此您可以在需要时利用历史记录。对于最近的评论,用一个名为 的标志列进行标记current。一个简单的int就足够了:1对于当前的,0对于所有其他的。
current
int
1
0