合并两个子文档在pymongo的两个集合中

时间:2018-05-10 10:58:00

标签: mongodb pymongo

我在db中有两个集合,名为type1和type2。

type1 collection:

{_id:"",md5:"",result:[
                        {from:"",
                         raw:{rects:
                                    [{h:"1",
                                      w:"2",
                                      properties:{type1:["111"]}
                                     }]
                             }
                        }
                      ]}

type2 collection:

{_id:"",md5:"",result:[
                        {from:"",
                         raw:{rects:
                                    [{h:"1",
                                      w:"2",
                                      properties:{type2:["111"]}
                                     }]
                             }
                        }
                      ]}

我想在sql中合并md5上的2个集合,例如全外连接,并生成一个新属性,它在数组中有2个类型(type1,type2)。

0 个答案:

没有答案