MongoDB查询以在数组中实现$ in

这是实现$in数组的查询>

> db.demo520.find({"ListOfName":{$in:["Bob","Mike"]}});

这将产生以下输出-

{ "_id" : ObjectId("5e899fb4b3fbf26334ef6114"), "ListOfName" : [ "John", "Bob" ] }
{ "_id" : ObjectId("5e899fc7b3fbf26334ef6116"), "ListOfName" : [ "Mike", "Bob" ] }