Computer >> Máy Tính >  >> Lập trình >> MongoDB

Tìm kiếm theo trường cụ thể trong MongoDB

Trước tiên, hãy để chúng tôi tạo một bộ sưu tập với các tài liệu -

> db.demo371.insertOne({"Name":"David","CountryName":"US"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e57f6982ae06a1609a00af2")
}
> db.demo371.insertOne({"Name":"John","CountryName":"UK"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e57f69e2ae06a1609a00af3")
}
> db.demo371.insertOne({"Name":"Bob","CountryName":"AUS"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e57f6a42ae06a1609a00af4")
}
> db.demo371.insertOne({"Name":"Mike","CountryName":"US"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e57f6ba2ae06a1609a00af5")
}

Hiển thị tất cả các tài liệu từ một bộ sưu tập với sự trợ giúp của phương thức find () -

> db.demo371.find();

Điều này sẽ tạo ra kết quả sau -

{ "_id" : ObjectId("5e57f6982ae06a1609a00af2"), "Name" : "David", "CountryName" : "US" }
{ "_id" : ObjectId("5e57f69e2ae06a1609a00af3"), "Name" : "John", "CountryName" : "UK" }
{ "_id" : ObjectId("5e57f6a42ae06a1609a00af4"), "Name" : "Bob", "CountryName" : "AUS" }
{ "_id" : ObjectId("5e57f6ba2ae06a1609a00af5"), "Name" : "Mike", "CountryName" : "US" }

Sau đây là truy vấn để tìm kiếm theo các trường cụ thể -

> db.demo371.find({ $or: [ { Name: "David" }, { CountryName: "UK"} ] } )

Điều này sẽ tạo ra kết quả sau -

{ "_id" : ObjectId("5e57f6982ae06a1609a00af2"), "Name" : "David", "CountryName" : "US" }
{ "_id" : ObjectId("5e57f69e2ae06a1609a00af3"), "Name" : "John", "CountryName" : "UK" }