sql >> データベース >  >> NoSQL >> MongoDB

MongoDBは、オブジェクトの配列内のデータを結合します

    MongoDB3.4.4以降の使用

    集計フレームワークでは、 $lookup 演算子は配列をサポートします

    db.diagnoses.aggregate([
        { "$addFields": { 
            "prescription": { "$ifNull" : [ "$prescription", [ ] ] }    
        } },
        { "$lookup": {
            "from": "drugs",
            "localField": "prescription.drug",
            "foreignField": "_id",
            "as": "drugs"
        } },
        { "$addFields": {
            "prescription": {
                "$map": {
                    "input": "$prescription",
                    "in": {
                        "$mergeObjects": [
                            "$$this",
                            { "drug": {
                                "$arrayElemAt": [
                                    "$drugs",
                                    { 
                                        "$indexOfArray": [
                                            "$drugs._id",
                                            "$$this.drug"
                                        ] 
                                    }
                                ]
                            } }
                        ]
                    }
                }
            }
        } },
        { "$project": { "drugs": 0 } }
    ])
    

    古いバージョンのMongoDBの場合:

    最初にprescriptionをフラット化するパイプラインを作成できます $unwindを使用した配列 演算子と$lookup 「drugs」コレクションで「左外部結合」を実行するための後続のパイプラインステップ。別の$unwindを適用します 「結合された」フィールドから作成された配列に対する操作。 $group $unwindがある最初のパイプラインからの以前にフラット化されたドキュメント オペレーターは、処方配列の各要素のドキュメントを出力します。

    上記のパイプラインを組み立てて、次の集約操作を実行します。

    db.diagnoses.aggregate([
        { 
            "$project": {               
                "patientid": 1,
                "doctorid": 1,
                "medicalcondition": 1,
                "diagnosis": 1,
                "addmissiondate": 1,
                "dischargedate": 1,
                "bhtno": 1,
                "prescription": { "$ifNull" : [ "$prescription", [ ] ] } 
            }
        },
        {
           "$unwind": {
               "path": "$prescription",
               "preserveNullAndEmptyArrays": true
            }
        },      
        {
            "$lookup": {
                "from": "drugs",
                "localField": "prescription.drug",
                "foreignField": "_id",
                "as": "prescription.drug"
            }
        },
        { "$unwind": "$prescription.drug" },
        { 
            "$group": {
                "_id": "$_id",
                "patientid" : { "$first": "$patientid" },
                "doctorid" : { "$first": "$doctorid" },
                "medicalcondition" : { "$first": "$medicalcondition" },
                "diagnosis" : { "$first": "$diagnosis" },
                "addmissiondate" : { "$first": "$addmissiondate" },
                "dischargedate" : { "$first": "$dischargedate" },
                "bhtno" : { "$first": "$bhtno" },
                "prescription" : { "$push": "$prescription" }
            }
        }
    ])
    

    サンプル出力

    {
        "_id" : ObjectId("582d43d18ec3f432f3260682"),
        "patientid" : ObjectId("582aacff3894c3afd7ad4677"),
        "doctorid" : ObjectId("582a80c93894c3afd7ad4675"),
        "medicalcondition" : "high fever, cough, runny nose.",
        "diagnosis" : "Viral Flu",
        "addmissiondate" : "2016-01-12",
        "dischargedate" : "2016-01-16",
        "bhtno" : "125",
        "prescription" : [ 
            {
                "drug" : {
                    "_id" : ObjectId("58345e0e996d340bd8126149"),
                    "genericname" : "Paracetamol Tab 500mg",
                    "type" : "X",
                    "isbrand" : false
                },
                "instructions" : "Take 2 daily, after meals."
            }, 
            {
                "drug" : {
                    "_id" : ObjectId("5836bc0b291918eb42966320"),
                    "genericname" : "Paracetamol Tab 100mg",
                    "type" : "Y",
                    "isbrand" : false
                },
                "instructions" : "Take 1 daily, after meals."
            }
        ]
    }
    


    1. フォロワー-mongodbデータベース設計

    2. mongoDBがデータを保存している場所をどのように知ることができますか? (デフォルトの/ data / dbにはありません!)

    3. MongoDb:$lookupを使用して深くネストされたオブジェクトを検索します

    4. Mongoはポート27017(localhost)に自動的に接続しようとします