来建一个表:
- CREATE TABLE `a` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `x` int(10) unsigned NOT NULL,
- `y` int(10) unsigned NOT NULL,
- PRIMARY KEY (`id`),
- KEY `idx_x` (`x`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
复制
插入数据后,内容为:
- mysql> select * from a;
- +----+---+----+
- | id | x | y |
- +----+---+----+
- | 1 | 1 | 10 |
- | 2 | 2 | 20 |
- +----+---+----+
- 2 rows in set (0.00 sec)
复制
说明:实验时,需要在两个shell窗口中begin两个事务, 然后执行select for update, 当一次实验结束后,需要commit一下, 方便进行下次实验。
下面,我直接给出自己实验的结论:
1. select * from a where x = 1 for update; 是行锁,
会阻塞另一个事务的select * from a where x = 1 for update;操作
但不会阻塞另一个事务的select * from a where x = 2 for update;操作
2. select * from a where x = 0 for update; 无锁,不会阻塞另一个事务的select for update操作
3. select * from a where y = 10 for update;是表锁
会阻塞另一个事务的select * from a where y = 100000 for update;操作
4. select * from a where y = 0 for update;是表锁
会阻塞另一个事务的select * from a where y = 100000 for update;操作
至于联合查找的情况, 有兴趣的可以进行更多实验, 使用的时候要小心。