DML
Data Manipulation Language (DML) is a subset of SQL used to access and modify data stored in relational databases. DML operations enable applications to insert new rows, update existing data, delete rows, and retrieve data through queries. Although many references place data retrieval under a separate data query language (DQL), most discussions of DML cover the core data-changing statements and their use in data-driven applications.
The primary DML statements are INSERT, UPDATE, and DELETE, which respectively add, modify, and remove rows. Some
DML operations are typically executed within transactions and can be rolled back if errors or constraints
DML is a foundational element of working with relational databases, appearing in most database management systems