1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 13:52:46 +02:00

Update data-manipulation-language by adding articles (#6760)

Add article links
This commit is contained in:
Sarkis Kovlekjian
2024-08-23 13:13:27 +02:00
committed by GitHub
parent 694d7b1ecc
commit a22d54dbb4

View File

@@ -1,3 +1,9 @@
# Data Manipulation Language (DML)
Data Manipulation Language (DML) is a subset of SQL used to manage data within database objects. It includes commands like `SELECT`, `INSERT`, `UPDATE`, and `DELETE`, which allow users to retrieve, add, modify, and remove data from tables. DML statements operate on the data itself rather than the database structure, enabling users to interact with the stored information. These commands are essential for day-to-day database operations, data analysis, and maintaining the accuracy and relevance of the data within a database system.
Data Manipulation Language (DML) is a subset of SQL used to manage data within database objects. It includes commands like `SELECT`, `INSERT`, `UPDATE`, and `DELETE`, which allow users to retrieve, add, modify, and remove data from tables. DML statements operate on the data itself rather than the database structure, enabling users to interact with the stored information. These commands are essential for day-to-day database operations, data analysis, and maintaining the accuracy and relevance of the data within a database system.
Visit the following resources to learn more:
- [@article@What is DML?](https://satoricyber.com/glossary/dml-data-manipulation-language)
- [@article@What is DML?(Wiki)](https://en.wikipedia.org/wiki/Data_manipulation_language)
- [@article@Difference Between DMS & DML](https://appmaster.io/blog/difference-between-ddl-and-dml)