CRUD OperationsCRUD操作
CRUD (Create, Read, Update, Delete) operations allow you to work with the data stored in MongoDB.CRUD(创建、读取、更新、删除)操作允许您使用存储在MongoDB中的数据。
The CRUD operation documentation is categorized in two sections:CRUD操作文档分为两部分:
Read Operations读取操作find and return documents stored within your MongoDB database.查找并返回存储在MongoDB数据库中的文档。Write Operations写入操作insert, modify, or delete documents in your MongoDB database.在MongoDB数据库中插入、修改或删除文档。
Some operations combine aspects of read and write operations. 某些操作结合了读取和写入操作的各个方面。See our guide on compound operations to learn more about these hybrid methods.请参阅复合运算指南,了解有关这些混合方法的更多信息。
Note
If you are looking for additional resources for learning topics related to CRUD, check out the following posts on the MongoDB Developer Hub:如果您正在寻找与CRUD相关的学习主题的其他资源,请查看MongoDB Developer Hub上的以下帖子:
Learn how to apply CRUD Operations通过示例场景了解如何应用CRUD操作with an example scenario.
。
Analyze data in MongoDB Atlas using the Aggregation Pipeline.使用聚合管道分析MongoDB Atlas中的数据。