diff --git a/README_ENG.md b/README_ENG.md
index 63e74c2..0c67b86 100644
--- a/README_ENG.md
+++ b/README_ENG.md
@@ -1452,10 +1452,40 @@ Look for a special [awesome repository](https://github.com/sindresorhus/awesome#
- ### Relational database
+ The most popular relational databases: [MySQL](https://en.wikipedia.org/wiki/MySQL), [PostgreSQL](https://en.wikipedia.org/wiki/PostgreSQL), [MariaDB](https://en.wikipedia.org/wiki/MariaDB), [Oracle](https://en.wikipedia.org/wiki/Oracle_Database). A special language [SQL (Structured Query Language)](https://postgrespro.com/docs/postgresql/14/sql) is used to work with these databases. It is quite simple and intuitive.
+
+ - [SQL basics](./files/databases/sql-cheatsheet.md)
+ > Learn the basic cycle of creating/receiving/updating/deleting data. Everything else as needed.
+ - Merging tables
+ - Querying data from multiple tables
+ > Operator `JOIN`; Combinations with other operators; `JOIN` types.
+ - Relationships between tables
+ > References from one table to another; foreign keys.
+ - [Subquery Expressions](https://postgrespro.com/docs/postgresql/14/functions-subquery)
+ > Query inside another SQL query.
+ - [Indexes](https://postgrespro.com/docs/postgresql/14/indexes-intro)
+ > Data structure that allows you to quickly determine the position of the data of interest in the database.
+ - [Transactions](https://postgrespro.com/docs/postgresql/14/tutorial-transactions)
+ > Sequences of commands that must be executed completely, or not executed at all.
+ - Command `START TRANSACTION`
+ - Commands `COMMIT` and `ROLLBACK`
+ - Working with a programming language
+ > To do this, you need to install a special driver for your language. For more convenient operation, there are ORM libraries that allow you to execute SQL queries as if you were simply calling methods on the object.
+ - [Optimization and performance](https://postgrespro.ru/docs/postgresql/14/performance-tips)
+
🔗 References
-