Mysql中锁的使用场景是什么

发布时间:2022-06-29 09:48:37 作者:iii
来源:亿速云 阅读:157

这篇文章主要讲解了“Mysql中锁的使用场景是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Mysql中锁的使用场景是什么”吧!

Mysql中锁的使用场景是什么

一、常见锁类型

Mysql中锁的使用场景是什么
常见锁类型

二、Mysql引擎介绍

show variables like '%storage_engine%';

三、常用引擎间的区别

四、共享锁与排他锁

//共享锁
select * from 表名 lock in share mode

//排他锁
select * from 表名 for update

五、排他锁的实际应用

T1: select * from 表名 lock in share mode //假设还未返回结果

T2: update 表名 set name='autofelix'

六、共享锁的实际应用

T1: select * from table lock in share mode

T2: select * from table lock in share mode

七、死锁的发生

T1: 开启事务,执行查询更新两个操作

     select * from table lock in share mode

     update table set column1='hello'

T2: 开启事务,执行查询更新两个操作

     select * from table lock in share mode

     update table set column1='world'

八、另一种发生死锁的情景

T1: begin
     update table set content='hello' where id=10

T2: begin
     update table set content='world' where id=20

九、死锁的解决方式

T1: begin

     select * from table for update

     update table set content='hello'

T2: begin

     select * from table for update

     update table set content='world'
T1: begin

     select * from table [加更新锁操作]

     update table set content='hello'

T2: begin

     select * from table [加更新锁操作]

     update table set content='world'

十、意向锁和计划锁

十一、乐观锁和悲观锁

update table set num=num-1 where id=10 and version=12

感谢各位的阅读,以上就是“Mysql中锁的使用场景是什么”的内容了,经过本文的学习后,相信大家对Mysql中锁的使用场景是什么这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!

推荐阅读:
  1. MySQL中的锁是什么?
  2. MySQL中锁的概念是什么

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

mysql

上一篇:mysql如何查询表的字符集编码

下一篇:vue中数据更新视图不更新怎么解决

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》