1、count()
查询出国籍是美国的学生人数
MongoDB笔记十一——count+Distinct+Group_mongodb 入门课程
2、Distinct()
查询出都有哪些国家的学生
db.runCommond({distinct:"persons",key:"country"}).values
MongoDB笔记十一——count+Distinct+Group_count+Distinct+Group_02