mongodb A表不在B表内

Posted 500年

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongodb A表不在B表内相关的知识,希望对你有一定的参考价值。

mongodb A表不在B表内


db.storageDirectory.aggregate([
    {
        "$addFields": {
            "myId": {
                "$toString": "$_id"
            }
        }
    },
    {
        $match: {
            fid: {
                $ne: ""
            }
        }
    },
    {
        $lookup: {
            from: "storageFile",
            localField: "myId",
            foreignField: "storageDirectoryId",
            as: "file_docs"
        }
    },
    {
        $match: {
            'file_docs.md5': {
                $exists: false
            }
        }
    }
]);

以上是关于mongodb A表不在B表内的主要内容,如果未能解决你的问题,请参考以下文章

想筛选出excel表格A表与B表内姓名与身份证号码相同的数据,那个啥函数不会用

mssql查询命令

yii2单表内字段关联查询该怎么做

不知道数据在sql server哪一个表内,如何查询。

excel 两个表关联,相同数据删除

mysql视图里面怎么新增一个全新字段,在原来表内没有这列