# Как расшифровывается CRUD?

**CRUD** — это аббревиатура, которая описывает четыре базовые операции с данными в приложениях:

***

| Буква | Расшифровка | Описание                                                                                                    |
| ----- | ----------- | ----------------------------------------------------------------------------------------------------------- |
| **C** | Create      | Создание нового ресурса или записи в базе данных. Пример: добавление нового пользователя.                   |
| **R** | Read        | Чтение данных, получение информации. Пример: просмотр списка пользователей или деталей одного пользователя. |
| **U** | Update      | Обновление существующих данных. Пример: изменение email или статуса пользователя.                           |
| **D** | Delete      | Удаление ресурса или записи. Пример: удаление пользователя из базы.                                         |

***

#### Применение в веб-разработке и API

* **REST API** обычно соответствует CRUD-операциям через HTTP-методы:
  * `POST` → Create
  * `GET` → Read
  * `PUT` / `PATCH` → Update
  * `DELETE` → Delete
* QA проверяет корректное выполнение всех CRUD-операций для ресурсов.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kaze.gitbook.io/qa-theory/web/kak-rasshifrovyvaetsya-crud.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
