CRUD Operations
CRUD Operations¶ Let us get an overview of CRUD Operations. They are nothing but DML and queries to read the data while performing database operations. CRUD is widely used from application development perspective. C – CREATE (INSERT) R – READ (READ) U – UPDATE (UPDATE) D – DELETE (DELETE) As part of the application development …