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

  • Change, Read, Update, Delete
  • Connect, Retrieve, Update, Disconnect
  • Copy, Remove, Update, Delete
  • Create, Retrieve, Update, Delete
CRUD stands for Create, Retrieve, Update, Delete. It represents the four basic operations that can be performed on data: Create (insert), Retrieve (select), Update (modify), and Delete (remove). These operations are fundamental in database management systems and are used extensively in applications dealing with persistent data storage. Understanding CRUD operations is crucial for developers working with databases.
Add your answer
Loading...

Leave a comment

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