When performing CRUD operations on a database, which operation can be the most expensive in terms of performance?

  • Create
  • Read
  • Update
  • Delete
Among CRUD operations, "Update" can often be the most expensive in terms of performance. This is because updating records may require the database to search for the existing record, make changes, and write the updated data back to disk, which can be resource-intensive. Read operations are typically less expensive.
Add your answer
Loading...

Leave a comment

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