C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MongoDB Query documentsIn MongoDB, the db.collection.find() method is used to retrieve documents from a collection. This method returns a cursor to the retrieved documents. The db.collection.find() method reads operations in mongoDB shell and retrieves documents containing all their fields. Note: You can also restrict the fields to return in the retrieved documents by using some specific queries. For example: you can use the db.collection.findOne() method to return a single document. It works same as the db.collection.find() method with a limit of 1.Syntax: db.COLLECTION_NAME.find({}) Select all documents in a collection:To retrieve all documents from a collection, put the query document ({}) empty. It will be like this: db.COLLECTION_NAME.find() For example: If you have a collection name "canteen" in your database which has some fields like foods, snacks, beverages, price etc. then you should use the following query to select all documents in the collection "canteen". db.canteen.find()
Next TopicSQL to MongoDB Mapping
|