介绍
你被聘用来管理一所大学的“荣誉榜”数据库。该大学根据学生的 GPA(绩点)来跟踪表现优异的学生。你的任务是将学生数据填充到数据库中,并识别出符合荣誉榜资格的学生,即 GPA 大于 3.7 的学生。你将把这些优秀学生存储在一个名为 honor_roll
的独立集合中。
这个挑战将测试你插入数据、查询特定记录以及根据查询结果创建新集合的能力。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
mongodb(("MongoDB")) -.-> mongodb/BasicOperationsGroup(["Basic Operations"])
mongodb(("MongoDB")) -.-> mongodb/QueryOperationsGroup(["Query Operations"])
mongodb/BasicOperationsGroup -.-> mongodb/insert_document("Insert Document")
mongodb/QueryOperationsGroup -.-> mongodb/find_documents("Find Documents")
subgraph Lab Skills
mongodb/insert_document -.-> lab-425476{{"荣誉榜追踪器"}}
mongodb/find_documents -.-> lab-425476{{"荣誉榜追踪器"}}
end