What does CRUD stand for in the context of database operations?

  • Create
  • Delete
  • Read
  • Update
CRUD stands for Create, Read, Update, and Delete. It represents the four basic operations performed on data in a database. Create is used to add new records, Read retrieves data, Update modifies existing records, and Delete removes records. This concept is fundamental to database management and is widely used in CodeIgniter for database operations.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *