diff --git a/README_ENG.md b/README_ENG.md
index 0c67b86..ed3b32a 100644
--- a/README_ENG.md
+++ b/README_ENG.md
@@ -1491,10 +1491,25 @@ Look for a special [awesome repository](https://github.com/sindresorhus/awesome#
- ### MongoDB
+ [MongoDB](https://en.wikipedia.org/wiki/MongoDB) is a document-oriented database (which is a classic example of [NoSQL](https://en.wikipedia.org/wiki/NoSQL) databases) that does not require a table schema description. Uses JSON-like documents and database schema.
+
+ - [Basic commands](./files/databases/mongodb-cheatsheet.md)
+ > Learn the basic cycle of creating/receiving/updating/deleting data. Everything else as needed.
+ - [Aggregations](https://www.mongodb.com/docs/manual/aggregation)
+ > Grouping values from multiple documents.
Three ways to perform aggregation: pipeline, map-reduce, and single-purpose aggregation methods.
+ - [Working with Indexes](https://www.mongodb.com/docs/manual/indexes)
+ - Working with a programming language
+ > For this you need to install [MongoDB driver](https://www.mongodb.com/docs/drivers) for your language.
+
🔗 References
-