Tagged Questions
11
votes
3answers
338 views
How many rows will be locked by SELECT … ORDER BY xxx LIMIT 1 FOR UPDATE?
I have a query with the following structure:
SELECT ..... WHERE status = 'QUEUED' ORDER BY position ASC LIMIT 1 FOR UPDATE;
It's a single-table SELECT statement on InnoDB table. Field position (INT ...
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
1answer
107 views
SELECT FOR UPDATE and WHERE condition on two indexed columns - what's locking strategy?
This question is a logical continuation of this one:
How many rows will be locked by SELECT ... ORDER BY xxx LIMIT 1 FOR UPDATE?
Suppose I have such SELECT:
SELECT id, status FROM job WHERE status ...
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 ...
0
votes
1answer
91 views
MySQL transactions vs locking
Quick question/clarification required here. I have a DB table that will quite possibly have simultaneous updates to a record. I am using Zend Framework for the application, and I have read about two ...