Concept

  • CRUD stands for Create, Read, Update, and Delete—the fundamental operations for managing data.

Example

  • Create: Inserting a new record into a table.
  • Read: Querying a table to retrieve records.
  • Update: Modifying an existing record.
  • Delete: Removing a record from a table.

Source