type
status
date
slug
summary
tags
category
icon
password
official document - link

Some simple commands

Connect to a local MongoDB server

show databases, collections, and find commands
The examples above are all command-line (CML) operations. However, the graphical user interface (GUI) provides a much more intuitive and user-friendly experience. The GUI installation method is in GUI section.
Here are some common MongoDB CRUD (Create, Read, Update, Delete) commands in note format:
MongoDB CRUD Commands
1. Create (Insert Data)
- Insert a single document:
- Insert multiple documents:
2. Read (Query Data)
- Find all documents:
- Find documents with a condition:
- Find a single document:
- Retrieve specific fields (projection):
3. Update (Modify Data)
- Update a single document:
- Update multiple documents:
- Replace an entire document:
4. Delete (Remove Data)
- Delete a single document:
- Delete multiple documents:
- Delete all documents in a collection:
5. Other Useful Commands
- Count documents:
- Sort results:
- Limit results:
- Skip documents:
- Create an index for faster queries:
- Drop (delete) a collection:
- Drop a database:
Here are more common MongoDB commands for administration, indexing, aggregation, and more:
MongoDB Advanced Commands
1. Database Management
- Show all databases:
- Use (switch to) a database:
- Show collections in the current database:
- Drop a database:
2. Collection Management
- Create a new collection explicitly:
- Drop (delete) a collection:
- Check collection stats:
3. Aggregation Operations
- Basic aggregation example:
- Count the number of documents in a collection:
- Find the average age:
4. Indexing for Performance Optimization
- Create an index on a field:
- Create a compound index on multiple fields:
- List all indexes on a collection:
- Drop an index:
5. Bulk Operations
- Bulk insert multiple documents:
- Bulk update multiple documents:
- Bulk delete multiple documents:
6. Find Queries with Advanced Filters
- Find documents where age is between 25 and 35:
- Find documents where city is either "New York" or "Los Angeles":
- Find documents where city is NOT "Chicago":
- Find documents where the "tags" array contains "sports":
- Find documents where "tags" array contains BOTH "sports" and "movies":
7. Working with Embedded Documents & Arrays
- Find documents with a specific nested field value:
- Update a field inside an embedded document:
- Add an element to an array field:
- Remove an element from an array:
- Update specific array elements based on condition:
8. User & Role Management
- Create a new user:
- Show all users:
- Delete a user:
9. Backup & Restore
- Backup a database:
- Restore a database from a backup:
10. Replication & Sharding (Basic Commands)
- Check replication status:
- Initiate a new replica set:
- Add a secondary node to the replica set:
- Check shard status:
GUI - link

Database data can be easily viewed through the gui

Provide secure remote access
- Sign up for Cloudflare
- Buy Domain Name

- Access to Zero Trust
- To configure Tunnels, follow the step-by-step procedure

You can see that the local database data on my remote is directly accessible via the url

- Author:Tianqi
- URL:https://notion-next-olive-five-36.vercel.app//article/1a0d7de3-ba0e-8018-96e4-c90ce7d1ba2e
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!
Relate Posts