关键词搜索

源码搜索 ×
×

mysql行锁、表锁小实验------select for update

发布2019-07-26浏览3042次

详情内容

       来建一个表:

  1. CREATE TABLE `a` (
  2. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  3. `x` int(10) unsigned NOT NULL,
  4. `y` int(10) unsigned NOT NULL,
  5. PRIMARY KEY (`id`),
  6. KEY `idx_x` (`x`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
复制

      插入数据后,内容为:

  1. mysql> select * from a;
  2. +----+---+----+
  3. | id | x | y |
  4. +----+---+----+
  5. | 1 | 1 | 10 |
  6. | 2 | 2 | 20 |
  7. +----+---+----+
  8. 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;操作

  

   至于联合查找的情况, 有兴趣的可以进行更多实验, 使用的时候要小心。

 

 

     

      

相关技术文章

点击QQ咨询
开通会员
返回顶部
×
微信扫码支付
微信扫码支付
确定支付下载
请使用微信描二维码支付
×

提示信息

×

选择支付方式

  • 微信支付
  • 支付宝付款
确定支付下载