本文介绍了将MongoDB集合的子集保存到另一个集合的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这样的一套
{date: 20120101}
{date: 20120103}
{date: 20120104}
{date: 20120005}
{date: 20120105}
如何将日期为"20120105"的这些文档的子集保存到另一个集合中?
How do I save a subset of those documents with the date '20120105' to another collection?
即 db.subset.save(db.full_set.find({date: "20120105"}));
推荐答案
以下是shell版本:
Here's the shell version:
db.full_set.find({date:"20120105"}).forEach(function(doc){
db.subset.insert(doc);
});
注意:从MongoDB 2.6开始,聚合框架使更快地执行此操作成为可能.有关详细信息,请参见 melan的答案.
Note: As of MongoDB 2.6, the aggregation framework makes it possible to do this faster; see melan's answer for details.
这篇关于将MongoDB集合的子集保存到另一个集合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!