CRUD Operations – DML and DQL¶
Let us get an overview of CRUD Operations. They are nothing but DML and queries to read the data while performing database operations via applications.
CRUD is widely used from application development perspective.
C - CREATE (INSERT)
R - READ (QUERY)
U - UPDATE (UPDATE)
D - DELETE (DELETE)
As part of the application development process we perform CRUD Operations using REST APIs.