MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Mesclar dois campos de matriz no mongoDB


Usando o .aggregate() e o método $setUnion operador.
db.collection.aggregate([
    { "$project": { 
        "attribute3": { "$setUnion": [ "$attribute1", "$attribute2" ] } 
    }}
])

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