
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Specify a Return Format for Data in MongoDB
Take the help of $addToSet in MongoDB to specify a return format. Let us create a collection with documents −
> db.demo207.insertOne({"FavouriteTechnology":"Spring Boot"}); { "acknowledged" : true, "insertedId" : ObjectId("5e3d8e7a03d395bdc21346f1") } > db.demo207.insertOne({"FavouriteTechnology":"MongoDB"}); { "acknowledged" : true, "insertedId" : ObjectId("5e3d8e8f03d395bdc21346f2") } > db.demo207.insertOne({"FavouriteTechnology":"Groovy"}); { "acknowledged" : true, "insertedId" : ObjectId("5e3d8ea603d395bdc21346f3") }
Display all documents from a collection with the help of find() method −
> db.demo207.find();
This will produce the following output −
{ "_id" : ObjectId("5e3d8e7a03d395bdc21346f1"), "FavouriteTechnology" : "Spring Boot" } { "_id" : ObjectId("5e3d8e8f03d395bdc21346f2"), "FavouriteTechnology" : "MongoDB" } { "_id" : ObjectId("5e3d8ea603d395bdc21346f3"), "FavouriteTechnology" : "Groovy" }
Following is the query to specify return format −
> db.demo207.aggregate([ ... { ... "$group": { ... "_id": 0, ... "FavouriteTechnology": { ... "$addToSet": "$FavouriteTechnology" ... } ... } ... }, ... { ... "$project": { ... "_id": 0, ... "FavouriteTechnology": 1 ... } ... } ...]);
This will produce the following output −
{ "FavouriteTechnology" : [ "MongoDB", "Groovy", "Spring Boot" ] }
Advertisements