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

Không thể tìm thấy người dùng theo tên với MongoDB?


Để tìm người dùng theo tên trong MongoDB, hãy sử dụng find (). Hãy để chúng tôi tạo một bộ sưu tập với các tài liệu -

> db.demo504.insertOne({"Name":"Chris"});{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e8823ee987b6e0e9d18f570")
}
> db.demo504.insertOne({"Name":"John"});{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e8823f2987b6e0e9d18f571")
}
> db.demo504.insertOne({"Name":"David"});{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e8823f5987b6e0e9d18f572")
}

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.demo504.find();

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

{ "_id" : ObjectId("5e8823ee987b6e0e9d18f570"), "Name" : "Chris" }
{ "_id" : ObjectId("5e8823f2987b6e0e9d18f571"), "Name" : "John" }
{ "_id" : ObjectId("5e8823f5987b6e0e9d18f572"), "Name" : "David" }

Sau đây là truy vấn để tìm người dùng theo tên -

> db.demo504.find({Name:"John"});

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

{ "_id" : ObjectId("5e8823f2987b6e0e9d18f571"), "Name" : "John" }