Tagged Questions
3
votes
2answers
153 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 ...