
What is DML (Data Manipulation Language)?
As the name indicates, Data manipulation for working with information inside a database structure. There are four main DML commands:
- Select – reading data rows
- Insert – adding data rows
- update – changing values within data rows
- Delete – removing data row
Related References
1 Comment