求解视频问题
请问按照演示,输入到最后查询的是空啊,您说的就可以使用常见的索引了是什么意思?
请问按照演示,输入到最后查询的是空啊,您说的就可以使用常见的索引了是什么意思?
2015-02-19
> db.t2.find({x:1,y:2}) > db.t2.insert({x:1,y:1}) WriteResult({ "nInserted" : 1 }) > db.t2.insert({x:1,y:2}) WriteResult({ "nInserted" : 1 }) > db.t2.insert({x:2,y:2}) WriteResult({ "nInserted" : 1 }) > db.t2.insert({x:2,y:1}) WriteResult({ "nInserted" : 1 }) > db.t2.find({x:1,y:2}) { "_id" : ObjectId("58d1e7ad464e6e1c16384470"), "x" : 1, "y" : 2 } >
先insert进去,再查询就能用啦
举报