我在 MongoDB 中有一个文档,例如
{ "_id" : ObjectId("51723a2f2b9b90e9eb190c45"), "d" : BinData(0,"c9f0f895fb98ab9159f51fd0297e236d") }
字段“d”已编入索引,但如何在 mongo shell 中通过其值找到?
例如
db.test.find( {"d": BinData(0,"c9f0f895fb98ab9159f51fd0297e236d") } )
不工作,有什么想法吗?