gpt4 book ai didi

mongodb - 合并mongoDB中的两个数组字段

转载 作者:可可西里 更新时间:2023-11-01 09:56:34 25 4
gpt4 key购买 nike

我有以下结构的集合

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

有什么方法可以合并这两个属性,同时在 mongoDB 中使用聚合查询删除重复项?我需要这样的结果:

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

最佳答案

使用 .aggregate()方法和 $setUnion运营商。

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

产生:

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

关于mongodb - 合并mongoDB中的两个数组字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21545103/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com