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 select语句中的一些记录而不是删除它们?例如,我们可以轻松地添加一列deleted并将已删除的列设置为 1 并保留它们,但问题是我们必须放入where deleted = 1所有查询。将一些记录保存为档案的最佳方式是什么?
deleted
where deleted = 1
我不知道您有多少表以及要存储多少数据,但一个解决方案可能是这个:
这将允许您保留从现在开始创建的查询和数据库表,而无需对其进行太多修改。