Search notes:
DML - Data Manipulation Language (SQL)
In SQL, DML statements aure used to add, modify or remove data from a database:
insert
`: Add data to tables
update
: Change data
delete
: Remove data
merge
: Insert or change data. A combination of
insert
and
insert
.
truncate
At times,
select
statements
are also considered to be DML statements because of the
select … for update
variant.
See also
SQL
Index