MongoDB 練習 – 各料理の最低スコアを見つける

MongoDB

MongoDB Exercises

MongoDB クエリを作成して、各料理の最低スコアを見つけます。

「レストラン」コレクションの構造:

{
  "address": {
     "building": "1007",
     "coord": [ -73.856077, 40.848447 ],
     "street": "Morris Park Ave",
     "zipcode": "10462"
  },
  "borough": "Bronx",
  "cuisine": "Bakery",
  "grades": [
     { "date": { "$date": 1393804800000 }, "grade": "A", "score": 2 },
     { "date": { "$date": 1378857600000 }, "grade": "A", "score": 6 },
     { "date": { "$date": 1358985600000 }, "grade": "A", "score": 10 },
     { "date": { "$date": 1322006400000 }, "grade": "A", "score": 9 },
     { "date": { "$date": 1299715200000 }, "grade": "B", "score": 14 }
  ],
  "name": "Morris Park Bake Shop",
  "restaurant_id": "30075445"
}

Query

db.restaurants.aggregate([
  {
    $unwind: "$grades"
  },
  {
    $group: {
      _id: "$cuisine",
minScore: { $min: "$grades.score" }
    }
  }
])

Output

{ _id: 'Middle Eastern', minScore: 2 },
{ _id: 'Jewish/Kosher', minScore: 0 },
{ _id: 'Hotdogs', minScore: 0 },
{ _id: 'Polish', minScore: 2 },
{ _id: 'Asian', minScore: 2 },
{ _id: 'Soul Food', minScore: 2 },
{ _id: 'Eastern European', minScore: 2 },
{ _id: 'Vegetarian', minScore: 5 },
{ _id: 'Czech', minScore: 8 },
{ _id: 'Spanish', minScore: 2 },
{ _id: 'Juice, Smoothies, Fruit Salads', minScore: 0 },
{ _id: 'Pancakes/Waffles', minScore: 3 },
  {
    _id: 'Latin (Cuban, Dominican, Puerto Rican, South & Central American)',
minScore: 0
  },
{ _id: 'Barbecue', minScore: 5 },
{ _id: 'Ice Cream, Gelato, Yogurt, Ices', minScore: 0 },
{ _id: 'Japanese', minScore: 0 },
{ _id: 'Indian', minScore: 0 },
{ _id: 'Bangladeshi', minScore: 7 },
{ _id: 'Donuts', minScore: 0 },
{ _id: 'Salads', minScore: 2 }
.....

説明

このMongoDBの集計パイプライン操作は、’restaurants’ コレクション内のデータに対して、以下の手順で集計計算を行います:

$unwind: “$grades”:
このステージでは、配列フィールドである “grades” を展開し、各 “grades” 要素を個別のドキュメントとして分割します。これにより、各 “grades” 要素に対して後続の処理を行うことができるようになります。

$group: { _id: “$cuisine”, maxScore: { $max: “$grades.score” } }:
このステージでは、“$cuisine” フィールドでドキュメントをグループ化し、各グループ内の “grades.score” フィールドの最大値を計算します。つまり、各料理種類ごとに “grades.score” の最大値を計算します。”_id” フィールドには料理種類が、”maxScore” フィールドには対応する料理種類内の “grades.score” の最大値が格納されます。

最終的に、各料理種類ごとにグループ化され、対応する料理種類内の “grades.score” の最大値が計算されます。結果は “_id” フィールドに料理種類が、”maxScore” フィールドに対応する料理種類内の “grades.score” の最大値が格納されたドキュメントの配列として返されます。

Previous:各料理の最高スコアを見つける

Next:各区の平均スコアを求める

コメント

タイトルとURLをコピーしました