In what scenario would you use the Active Record Class's batch update feature?

  • The batch update feature is not supported in CodeIgniter
  • When updating a single record with multiple values
  • When updating multiple records with the same data
  • When updating records based on a condition
The batch update feature is useful when you need to update multiple records with the same data efficiently. It helps reduce the number of queries executed, improving performance in scenarios where bulk updates are required.
Add your answer
Loading...

Leave a comment

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