DML (EN)

Concept

Data Manipulation Language for editing data in tables

DML commands and their functions

flowchart TD     A[DML commands] --> B[INSERT]     A --> C[UPDATE]     A --> D[DELETE]     A --> E[SELECT]          B --> F[Adds new records]     C --> G[Modifies existing data]     D --> H[Removes records]     E --> I[Retrieves data]          subgraph Database         J[Table]         K[Records]     end          F --> J     G --> K     D --> K     E --> K 
Quelle: AI Generated