InterviewSolution
Saved Bookmarks
| 1. |
Explain Mysql Locks. |
|
Answer» Table-level LOCKS ALLOW the user to lock the entire table, page-level locks allow locking of certain portions of the tables (those portions are referred to as tables), row-level locks are the most GRANULAR and allow locking of SPECIFIC rows. Table-level locks allow the user to lock the entire table, page-level locks allow locking of certain portions of the tables (those portions are referred to as tables), row-level locks are the most granular and allow locking of specific rows. |
|