如果在MongoDB中数组的情况下,匹配ID并使用$eq获取文档?
使用$eq 运算符以及 find() 来匹配ID并获取文档。$eq 指定相等条件。它匹配字段值等于指定值的文件。
让我们创建一个包含文档的集合 -
> db.demo426.insert({"Ids":["110","120","101"]}); WriteResult({ "nInserted" : 1 }) > db.demo426.insert({"Ids":["100","201","401"]}); WriteResult({ "nInserted" : 1 }) > db.demo426.insert({"Ids":["501","600","700"]}); WriteResult({ "nInserted" : 1 })
使用 find() 方法显示集合中的所有文档—
> db.demo426.find().pretty();
这将产生以下输出 -
{ "_id" : ObjectId("5e75e50fbbc41e36cc3cae72"), "Ids" : [ "110", "120", "101" ] } { "_id" : ObjectId("5e75e51abbc41e36cc3cae73"), "Ids" : [ "100", "201", "401" ] } { "_id" : ObjectId("5e75e527bbc41e36cc3cae74"), "Ids" : [ "501", "600", "700" ] }
以下是在MongoDB中使用 $eq 匹配ID的查询 -
> db.demo426.find({"Ids":{$eq:"501"}});
这将产生以下输出 -
{ "_id" : ObjectId("5e75e527bbc41e36cc3cae74"), "Ids" : [ "501", "600", "700" ] }
广告