我在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)。