1.需要新开cmd,而且不用mongo环境
2.find的时候,注意数据的类型,
db.student.find({"score.shuxue":30});
和
db.student.find({"score.shuxue":"30"});
是不一样的。