Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

MongoDB introduces two methods of deleting array elements based on a key in an embedded document

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

> use test

switched to db test

插入测试数据:

> db.country.insert({"name":"China","province":[{"name":"Henan","code":"1001"},{"name":"Hebei","code":"1002"},{"name":"Jiangsu","code":"1003"}]});

WriteResult({ "nInserted" : 1 })

方法一:

想删除名为"Hebei"的省份信息,分两步:

(1).查找到对应的数组元素,并将其替换为"null"

> db.country.update({"name":"China","province.name":"Hebei"},{"$set":{"province.$":"null"}});

WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })

此时数组数据如下:

> db.country.find()

{ "_id" : ObjectId("59f97d03a4fe2442400cbd2c"), "name" : "China", "province" : [ { "name" : "Henan", "code" : "1001" }, "null", { "name" : "Jiangsu", "code" : "1003" } ] }

(2).然后再清空数组中的"null"

> db.country.update({"name":"China"},{"$pull":{"province":"null"}});

WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })

删除后的最终数据如下:

> db.country.find()

{ "_id" : ObjectId("59f97d03a4fe2442400cbd2c"), "name" : "China", "province" : [ { "name" : "Henan", "code" : "1001" }, { "name" : "Jiangsu", "code" : "1003" } ] }

>

方法二:

根据某个键直接删除数组元素:

> db.country.update({"name":"China"},{"$pull":{"province":{"name":"Hebei"}}});

WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })

>

> db.country.find()

{ "_id" : ObjectId("59f97e58a4fe2442400cbd2d"), "name" : "China", "province" : [ { "name" : "Henan", "code" : "1001" }, { "name" : "Jiangsu", "code" : "1003" } ] }

>

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report