請求先住所がドキュメントの配送先住所と等しい「場所」を見つけるためのMongoDBクエリ?
同等性を確認してドキュメントをフェッチするには、MongoDBの$whereを使用します。ドキュメントを使用してコレクションを作成しましょう-
> db.demo589.insertOne({deliveryAddress:"US",billingAddress:"UK"});{ "acknowledged" : true, "insertedId" : ObjectId("5e92c117fd2d90c177b5bccc") } > db.demo589.insertOne({deliveryAddress:"US",billingAddress:"US"});{ "acknowledged" : true, "insertedId" : ObjectId("5e92c11bfd2d90c177b5bccd") } > db.demo589.insertOne({deliveryAddress:"US",billingAddress:"AUS"});{ "acknowledged" : true, "insertedId" : ObjectId("5e92c11ffd2d90c177b5bcce") } > db.demo589.insertOne({deliveryAddress:"UK",billingAddress:"US"});{ "acknowledged" : true, "insertedId" : ObjectId("5e92c127fd2d90c177b5bccf") }
find()メソッドを使用してコレクションからすべてのドキュメントを表示する-
> db.demo589.find();
これにより、次の出力が生成されます-
{ "_id" : ObjectId("5e92c117fd2d90c177b5bccc"), "deliveryAddress" : "US", "billingAddress" : "UK" } { "_id" : ObjectId("5e92c11bfd2d90c177b5bccd"), "deliveryAddress" : "US", "billingAddress" : "US" } { "_id" : ObjectId("5e92c11ffd2d90c177b5bcce"), "deliveryAddress" : "US", "billingAddress" : "AUS" } { "_id" : ObjectId("5e92c127fd2d90c177b5bccf"), "deliveryAddress" : "UK", "billingAddress" : "US" }
これは、請求先住所が配達先住所と等しい「場所」を確認し、ドキュメントを取得するためのクエリです-
> db.demo589.find( { $where: "this.deliveryAddress == this.billingAddress" } );
これにより、次の出力が生成されます-
{ "_id" : ObjectId("5e92c11bfd2d90c177b5bccd"), "deliveryAddress" : "US", "billingAddress" : "US" }
-
特定のFirstNameとLastNameを持つドキュメントを検索するためのMongoDBクエリ
特定のFirstNameとLastNameを持つドキュメントを検索するには、$andを$inとともに使用します。これをMongoDBfind()に実装します。ドキュメントを使用してコレクションを作成しましょう- > db.demo692.insertOne({FirstName:"Chris","LastName":"Brown"}); { "acknowledged" : true, "insertedId" : ObjectId(&q
-
MongoDB-埋め込まれたドキュメントをクエリしますか?
MongoDBに埋め込まれたドキュメントをクエリするには、aggregate()を使用します。ドキュメントを使用してコレクションを作成しましょう- > db.demo705.insertOne( ... { ... _id:101, ... "Information": ... [ ... { ... &nbs