Tagged Questions
3
votes
2answers
134 views
When exacly MySQL locks a row on updating InnoDB table?
If I have this multiupdate query
UPDATE user u
INNER JOIN user_profile up ON up.user_id = u.id
SET u.name = 'same_name_i_already_had', up.profile.age = 25
WHERE u.id = 10
Let's suppose the row 10 ...
1
vote
3answers
538 views
MySQL InnoDB locking only the affected rows?
I have an InnoDB table containing users, like this:
+--------------+-----------------------+
| user_id | name |
+--------------+-----------------------+
| 1 | Bob ...