Here are the steps to download MongoDB compass
- Open your preferred Browser.
- Open https://www.mongodb.com/products/tools/compass
- Click on download now.
CREATING A CLUSTER ON MongoDB Atlas
- Visit https://www.mongodb.com/products/platform/atlas-database
- Create your free account.
- Create a new Organization and a New Project.
- Go to Clusters
- Click on Create new Cluster
- Use free tier.
- Click on OK.

Updating values
--> use command - db..updateOne(
{ new_val1: "new_val2" },
{ $set: { "profile.age": 25, "profile.city": "Chennai" } }
)
Deleting values
--> use command - db.First.deleteOne({ val1: "val2" })
@shabhika_s_7a4d920629082b @santhoshnc @aravind_66ac0038974374783
Top comments (0)