DML or Data Manipulation Language statements are a set of classic SQL commands used to work on the data (records inside the tables). They are: INSERT, UPDATE, DELETE and SELECT. We can use them directly (ad hoc) or through different sets of applications, as a CRUD layer (CREATE, READ, UPDATE, and DELETE). Here are the explanations of DML commands:
- INSERT: Adding new records in to tables
- UPDATE: Modifying existing rows inside the tables
- DELETE: Removing records from the tables
- SELECT: Read-only access to the records stored inside the tables
We will learn more about SELECT in Chapter 6, A Crash Course in Querying.