suchen

Heim  >  Fragen und Antworten  >  Hauptteil

如何实现将 MongoDB中group分组后的结果,再存入到mongo数据库中????

先通过mongo中的聚合函数:group()后返回的是DBObject 对象,我想将其存入另一个集合中,怎么办???

过去多啦不再A梦过去多啦不再A梦2796 Tage vor805

Antworte allen(2)Ich werde antworten

  • 为情所困

    为情所困2017-04-24 16:01:32

    后来,我自己知道了,直接放入一个文档中,插入集合中就可以。。

    Antwort
    0
  • 習慣沉默

    習慣沉默2017-04-24 16:01:32

    collection.aggregate([
        {
            '$match': {}
        },
        {
            '$group': {}
        }
    ], {
        out: 'OtherCollection'
    })
    

    需要MongoDB 2.6 +
    且每次out会擦掉之前的数据
    不希望被擦掉的话,将结构批量插入新集合

    Antwort
    0
  • StornierenAntwort