我在 MongoDB 中有以下方案:
{
"_id" : 100,
"name" : "John Doe",
"scores" : [
{
"type" : "exam",
"score" : 334.45023
},
{
"type" : "quiz",
"score" : 11.78273309957772
},
{
"type" : "homework",
"score" : 6.676176060654615
},
{
"type" : "homework",
"score" : 35.8740349954354
}
]
}
我正在寻找一种以最低分数移除作业的方法。我在这里找到了一个相关的答案,但是它并没有多大帮助,因为我只需要找出分数最低的“家庭作业”并将其删除。
我正在使用 MongoDB 和 PyMongo 驱动程序。