其他分享
首页 > 其他分享> > Mongo多表关联的子查询

Mongo多表关联的子查询

作者:互联网

用于手机号条件过滤后手机号关联再进行子查询条件平台为今日头条:

db.getCollection("robot_account_port_info").aggregate(
    [
        
        {
            //        查询条件为端口信号存在的
            "$match": {
                "port_sign": 1
            }
        },
        {
            //把另一张表【account】与用本地的手机号进行关联
            "$lookup": 
            
            {
                "from": "account",
                "localField": "phone",
                "foreignField": "phone_num",
                "as": "inventory_docs"
            }
        },
        {
            //查处满足条件的子文档
            "$unwind": "$inventory_docs"
        },
        {
            //这儿是将子文档展示出来,否则查处的结果满足子文档的其中之一,子文档的值都会显示出来
            "$match": {
                "inventory_docs.platform": "今日头条"
            }
        },
        
    ]
)

 

标签:account,多表,Mongo,docs,查询,文档,inventory,手机号
来源: https://www.cnblogs.com/yunlongaimeng/p/15465288.html