-
Which table is preferred when there are many updates?
-
- MERGE
- MEMORY
- MyISAM
- InnoDB
- None of these
Correct Option: D
The InnoDB tables can provide better performance when there are many updates. Locking is done at the row level rather than at the table level. So the extent of the table that is locked is smaller.