MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Unisci due campi di array in mongoDB

Usando il .aggregate() metodo e il $setUnion operatore.

db.collection.aggregate([
    { "$project": { 
        "attribute3": { "$setUnion": [ "$attribute1", "$attribute2" ] } 
    }}
])

Che produce:

{
    "_id" : ObjectId("52f0795a58c5061aa34d436a"),
    "attribute3" : [8, 4, 2, 6, 3, 7, 1]
}