search

Home  >  Q&A  >  body text

跨表 - mongodb 多表分组查询

我现在遇到这样一个问题:
现在mongo中有多个集合
a集合
b集合
c集合

这三个集合中存放了有很多文档,文档中记录了不同电脑的信息ip,不同的类型type。
文档的格式如下:
a,b,c里存的文档格式是这样的:{“type”:类型1/类型2...;“ip”:10.1.1.1;...}大体的格式是这样的
我需要跨三个表,查出每种ip电脑所对应的type的种类以及数量,该怎么做呢?要是一个集合的话,比较好实现,可是需要跨多个,该怎么实现呢??最终实现的数据形成的表格如下:

阿神阿神2832 days ago632

reply all(1)I'll reply

  • 阿神

    阿神2017-04-25 09:06:06

    First aggregate the data of three collections into one Collection ip:[type] and then aggregate it?

    reply
    0
  • Cancelreply