MongoDB クエリを作成して、名前の最後の 3 文字に「ces」を含むレストランのレストラン ID、名前、地区、および料理を検索します。
「レストラン」コレクションの構造:
{
"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.find(
{name: /ces$/},
{
"restaurant_id" : 1,
"name":1,"borough":1,
"cuisine" :1
}
);
説明
このMongoDBのクエリコマンドは、’restaurants’という名前のコレクションからデータを取得し、正規表現を使用して条件に一致する文書の特定フィールドを選択して返すものです。
db.restaurants.find( {name: /ces$/}, { "restaurant_id" : 1, "name":1,"borough":1, "cuisine" :1 } );
このクエリの動作は以下の通りです:
{name: /ces$/}
:これはクエリのフィルタ条件です。ここでは、”name”フィールドが正規表現/ces$/
に一致する文書を選択しています。正規表現/ces$/
は、”name”フィールドの値が“ces”で終わる文書を意味します。{ "restaurant_id": 1, "name": 1, "borough": 1, "cuisine": 1 }
:これは、返される文書内で表示するフィールドを指定しています。ここでは、”restaurant_id”、”name”、”borough”、”cuisine”のフィールドを表示するように指定しています。それぞれのフィールドに対する値が1であるため、これらのフィールドが表示されます。
総合すると、このクエリの目的は、’restaurants’コレクションから文書を取得し、”name”フィールドの値が”ces”で終わる文書の中から、”restaurant_id”、”name”、”borough”、”cuisine”の各フィールドを選択して返すことです。つまり、”name”が”ces”で終わるレストランの文書から指定したフィールドを表示します。
Previous:名前の最初の 3 文字に Wil が含まれるレストランのレストラン ID、名前、地区、料理を検索します
コメント