溫馨提示×

mongodb數組里的值怎么查看

小億
91
2023-11-03 15:30:58
欄目: 云計算

在 MongoDB 中,可以使用 $elemMatch 運算符來查看數組中的特定值。

假設我們有以下的 users 集合:

{
  "_id": 1,
  "name": "Alice",
  "interests": ["hiking", "reading", "traveling"]
}

要查看 interests 數組中是否包含特定的值,可以使用以下查詢:

db.users.find({ interests: { $elemMatch: { $eq: "reading" } } })

這將返回包含 interests 數組中包含值 “reading” 的文檔。

0