mongodb从两个不同的数据库加入两个集合

时间:2018-04-20 02:46:59

标签: mongodb join

db_contacts collection_contact

{
"_id" : ObjectId("5ac5d63cf0b6c601a8978b56"),
"contact_type" : "Individual",
"name" : "MyShipper",

} ......

db_shipments collection_fclshipments

"shipper_info" : {
    "shipper" : ObjectId("5ac5d63cf0b6c601a8978b56"),
    "same_as_billing_address" : true
} ...

我想加入两个不同数据库的两个集合。我试过$ lookup方法。但这是不可能的。并且还尝试了db.getSibling / db.getSiblingDB。请建议任何正确的方法来处理这种情况。谢谢。

0 个答案:

没有答案