Sql, Crud
create, read, update, and delete
Crud is
C - create
r - read
u - update
d - delete
Its main operations in database applications .
Ex: C - Create query - creating a table in database.
R - Read query - Select * from tablename;
u - Update query - Update table
d - Delete Query - Delete a table
This only Crud operation in Database applications.