• MySQL


    目录

    一.python操作MySQL

    1.介绍

    2.操作步骤

    (1)先连接MySQL数据库

    (2)获取游标

    (3)书写SQL语句

    (4)开始执行SQL语句

    (5)想获取到结果:

    3.SQL注入问题

    二.视图

    1.什么是视图

    2.为什么要用视图

    3.如何用视图

    4.注意事项

     三.触发器

    1.什么是触发器

    2.为什么要用触发器

    3.如何创建触发器

    四.事务

    1.什么是事务

    2.事务的作用

    3.事务具有的四个属性

    4.如何使用

    五.存储过程

    1.基本使用

    2.三种开发模型

    第一种:

    第二种:

    第三种:

    3.创建存储过程

    4.如何用存储过程

    六.函数

    七.流程控制

    八.索引

    1.什么是索引

    2.索引的介绍

    3.索引的影响

    (1)在表中有大量数据的前提下,创建索引速度会很慢(建表的时候,如果明显需要索引,就提前加上)

    (2)在索引创建完毕后,对表的查询性能会大幅度提升,但是写的性能会降低

    4.补充

    5.测试索引


    一.python操作MySQL

    1.介绍

    MySQL本身就是一款C/S架构,有服务端、客户端,自身带了有客户端:mysql.exe

    python这门语言成为了MySQL的客户端(对于一个服务端来说,客户端可以有很多)

    2.操作步骤

    1. 先连接MySQL数据库
    2. 在python中书写SQL语句
    3. 开始执行SQL语句,拿到结果
    4. 在python中做处理(进一步对数据做处理)

    需要第三方的一个模块:pymysql或者mysqldb或者mysqlclient

    # pip install pymysql

    import pymysql

    (1)先连接MySQL数据库

    1. conn=pymysql.connect(
    2. host='127.0.0.1',
    3. port=3306,
    4. user='root',
    5. password='1234',
    6. db='db10',
    7. charset='utf8',
    8. autocommit=True
    9. )

    (2)获取游标

    cur=conn.cursor(cursor=pymysql.cursors.DictCursor)

    (3)书写SQL语句

    1. sql='select * from student'
    2. sql='insert into teacher(tid, tname) values (7, "ly1")'

    (4)开始执行SQL语句

    1. affect_rows=cur.execute(sql)
    2. # 输出结果16是影响的行数

    需要二次确认:除了查询之外都要二次确认提交

    1. conn.commit()
    2. print(affect_rows)

    (5)想获取到结果:

    1. res=cur.fetchone()
    2. res=cur.fetchall()
    3. # res=cur.fetchmany(5)
    4. # {'sid': 1, 'gender': '男', 'class_id': 1, 'sname': '理解'}
    5. print(res) # (1, '男', 1, '理解') 元组类型
    6. '''
    7. for i in res:
    8. print(i.get("sid"))
    9. ''' 取指定数据

    3.SQL注入问题

    1. import pymysql
    2. # 连接MySQL服务端
    3. conn = pymysql.connect(
    4. host='127.0.0.1',
    5. port=3306,
    6. user='root',
    7. password='123',
    8. database='db8_3',
    9. charset='utf8',
    10. autocommit=True # 针对增 改 删自动二次确认
    11. )
    12. # 产生一个游标对象
    13. cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
    14. # 编写SQL语句
    15. username = input('username>>>:').strip()
    16. password = input('password>>>:').strip()
    17. # sql = "select * from userinfo where name='%s' and pwd='%s'" % (name,pwd)
    18. sql = "select * from userinfo where name=%s and pwd=%s"
    19. cursor.execute(sql,(username,password))
    20. data = cursor.fetchall()
    21. if data:
    22. print(data)
    23. print('登录成功')
    24. else:
    25. print('用户名或密码错误')
    26. # 1.只需要用户名也可以登录
    27. username:>>> kevin111 " -- ddasfdfsdfdsfsdfsdfsdfdsfsdfsd
    28. username:>>> xxx " or 1=1
    29. # 2.不需要用户名和密码也可以登录
    30. """
    31. SQL注入的原因 是由于特殊符号的组合会产生特殊的效果
    32. 实际生活中 尤其是在注册用户名的时候 会非常明显的提示你很多特殊符号不能用
    33. 原因也是一样的
    34. 结论:设计到敏感数据部分 不要自己拼接 交给现成的方法拼接即可
    35. """
    36. # sql = 'insert into userinfo(name,pwd) values("jason","123"),("kevin","321")'
    37. # res = cursor.execute(sql)
    38. # print(res)
    39. """
    40. 在使用代码进行数据操作的时候 不同操作的级别是不一样的
    41. 针对查无所谓
    42. 针对增 改 删都需要二次确认
    43. conn.commit()
    44. """

    二.视图

    1.什么是视图

    视图就是通过查询得到一张虚拟表,然后保存下来,下次直接使用即可

    2.为什么要用视图

    如果频繁使用一张虚拟表,可以不用重复查询

    3.如何用视图

    1. create view teacher2course as
    2. select * from teacher inner join course on teacher.tid = course.teacher_id;
    3. """
    4. 创建好了之后 验证它的存在navicat验证 cmd终端验证
    5. 最后文件验证 得出下面的结论 视图只有表结构数据还是来源于之前的表
    6. delete from teacher2course where id=1;
    7. """

    4.注意事项

    1. 在硬盘中,视图只有表结构文件,没有表数据文件
    2. 视图通常是用于查询,尽量不要修改图中的数据
    drop view teacher2course;

    开发过程中一般不会使用到视图,视图是mysql的功能,如果你的项目里面大量的使用到了视图,那意味着你后期想要扩张某个功能的时候这个功能恰巧又需要对视图进行修改,意味着你需要先在mysql这边将视图先修改一下,然后再去应用程序中修改对应的sql语句,这就涉及到跨部门沟通的问题,所以通常不会使用视图,而是通过重新修改sql语句来扩展功能

     三.触发器

    1.什么是触发器

    在满足对某张表数据的增、删、改(没有查)的情况下,自动触发的功能称之为触发器

    2.为什么要用触发器

    触发器专门针对我们对某一张表数据增(insert)、删(delete)、改(update)的行为,这类行为一旦执行就会触发触发器的执行,即自动运行另外一段SQL代码

    3.如何创建触发器

    1. """语法结构
    2. create trigger 触发器的名字 before/after insert/update/delete on 表名 for each row
    3. begin
    4. sql语句
    5. end
    6. """
    7. # 针对插入
    8. create trigger tri_after_insert_t1 after insert on 表名 for each row
    9. begin
    10. sql代码。。。
    11. end
    12. create trigger tri_after_insert_t2 before insert on 表名 for each row
    13. begin
    14. sql代码。。。
    15. end
    16. # 针对删除
    17. create trigger tri_after_delete_t1 after delete on 表名 for each row
    18. begin
    19. sql代码。。。
    20. end
    21. create trigger tri_after_delete_t2 before delete on 表名 for each row
    22. begin
    23. sql代码。。。
    24. end
    25. # 针对修改
    26. create trigger tri_after_update_t1 after update on 表名 for each row
    27. begin
    28. sql代码。。。
    29. end
    30. create trigger tri_after_update_t2 before update on 表名 for each row
    31. begin
    32. sql代码。。。
    33. end
    34. """
    35. 需要注意 在书写sql代码的时候结束符是; 而整个触发器的结束也需要分号;
    36. 这就会出现语法冲突 需要我们临时修改结束符号
    37. delimiter $$
    38. delimiter ;
    39. 该语法只在当前窗口有效
    40. """
    41. # 案例
    42. CREATE TABLE cmd (
    43. id INT PRIMARY KEY auto_increment,
    44. USER CHAR (32),
    45. priv CHAR (10),
    46. cmd CHAR (64),
    47. sub_time datetime, #提交时间
    48. success enum ('yes', 'no') #0代表执行失败
    49. );
    50. CREATE TABLE errlog (
    51. id INT PRIMARY KEY auto_increment,
    52. err_cmd CHAR (64),
    53. err_time datetime
    54. );
    55. delimiter $$ # 将mysql默认的结束符由;换成$$
    56. create trigger tri_after_insert_cmd after insert on cmd for each row
    57. begin
    58. if NEW.success = 'no' then # 新记录都会被MySQL封装成NEW对象
    59. insert into errlog(err_cmd,err_time) values(NEW.cmd,NEW.sub_time);
    60. end if;
    61. end $$
    62. delimiter ; # 结束之后记得再改回来,不然后面结束符就都是$$了
    63. #往表cmd中插入记录,触发触发器,根据IF的条件决定是否插入错误日志
    64. INSERT INTO cmd (
    65. USER,
    66. priv,
    67. cmd,
    68. sub_time,
    69. success
    70. )
    71. VALUES
    72. ('egon','0755','ls -l /etc',NOW(),'yes'),
    73. ('egon','0755','cat /etc/passwd',NOW(),'no'),
    74. ('egon','0755','useradd xxx',NOW(),'no'),
    75. ('egon','0755','ps aux',NOW(),'yes');
    76. # 查询errlog表记录
    77. select * from errlog;
    78. # 删除触发器
    79. drop trigger tri_after_insert_cmd;

    四.事务

    1.什么是事务

    开启一个事务可以包含一些SQL语句,这些SQL语句要么同时成功,要么一个都不能成功,这种称之为事务的原子性

    2.事务的作用

    保证了对数据操作的数据安全性

    ###  案例:两个不同的银行账户相互转钱  ###

    3.事务具有的四个属性

    原子性、一致性、隔离性、持久性,这四个属性通常称为ACID特性

    1. 原子性(atomicity):一个事务是一个不可分割的工作单位,事务中包括的操作要么都做,要么都不做
    2. 一致性(consistency):事务必须是使数据库从一个一致性状态变到另一个一致性状态。一致性与原子性是密切相关的
    3. 隔离性(isolation):一个事务的执行不能被其他事务干扰,即一个事务内部的操作及使用的数据对并发的其他事务是隔离的,并发执行的各个事务之间不能互相干扰
    4. 持久性(durability):持久性也称为永久性,值一个事务一旦提交,他对数据库中数据的改变就应该是永久的,接下来的其他操作或故障不应该对其有任何影响

    4.如何使用

    1. # 先介绍事务的三个关键字 再去用表实际展示效果
    2. start transaction;
    3. commit;
    4. rollback;
    5. create table user(
    6. id int primary key auto_increment,
    7. name char(32),
    8. balance int
    9. );
    10. insert into user(name,balance)
    11. values
    12. ('jason',1000),
    13. ('egon',1000),
    14. ('tank',1000);
    15. # 修改数据之前先开启事务操作
    16. start transaction;
    17. # 修改操作
    18. update user set balance=900 where name='jason'; #买支付100元
    19. update user set balance=1010 where name='egon'; #中介拿走10元
    20. update user set balance=1090 where name='tank'; #卖家拿到90元
    21. # 回滚到上一个状态
    22. rollback;
    23. # 开启事务之后,只要没有执行commit操作,数据其实都没有真正刷新到硬盘
    24. commit;
    25. """开启事务检测操作是否完整,不完整主动回滚到上一个状态,如果完整就应该执行commit操作"""
    26. # 站在python代码的角度,应该实现的伪代码逻辑,
    27. try:
    28. # 少了开事务...
    29. update user set balance=900 where name='jason'; #买支付100元
    30. update user set balance=1010 where name='egon'; #中介拿走10元
    31. update user set balance=1090 where name='tank'; #卖家拿到90元
    32. except 异常:
    33. rollback;
    34. else:
    35. commit;

    五.存储过程

    存储过程包含了一系列可执行的SQL语句,存储过程存放于MySQL中,通过调用它的名字可以执行其内部的一堆sql,类似于python中的自定义函数

    1.基本使用

    1. delimiter $$
    2. create procedure p1()
    3. begin
    4. select * from user;
    5. end $$
    6. delimiter ;
    7. # 调用
    8. call p1()

    2.三种开发模型

    第一种:

    应用程序:只需要开发应用程序的逻辑
    mysql:编写好存储过程,以供应用程序调用
    优点:开发效率,执行效率都高
    缺点:考虑到人为因素、跨部门沟通等问题,会导致扩展性差

    第二种:

    应用程序:除了开发应用程序的逻辑,还需要编写原生sql
    优点:比方式1,扩展性高(非技术性的)
    缺点:
    1、开发效率,执行效率都不如方式1
    2、编写原生sql太过于复杂,而且需要考虑到sql语句的优化问题

    第三种:

    应用程序:开发应用程序的逻辑,不需要编写原生sql,基于别人编写好的框架来处理数据,ORM
    优点:不用再编写纯生sql,这意味着开发效率比方式2高,同时兼容方式2扩展性高的好处
    缺点:执行效率连方式2都比不过

    3.创建存储过程

    1. # 介绍形参特点 再写具体功能
    2. delimiter $$
    3. create procedure p2(
    4. in m int, # in表示这个参数必须只能是传入不能被返回出去
    5. in n int,
    6. out res int # out表示这个参数可以被返回出去
    7. )
    8. begin
    9. select tname from teacher where tid > m and tid < n;
    10. set res=0; # 用来标志存储过程是否执行
    11. end $$
    12. delimiter ;
    13. # 针对res需要先提前定义
    14. set @res=10; 定义
    15. select @res; 查看
    16. call p1(1,5,@res) 调用
    17. select @res 查看

    4.如何用存储过程

    1. # 大前提:存储过程在哪个库下面创建的只能在对应的库下面才能使用!!!
    2. # 1、直接在mysql中调用
    3. set @res=10 # res的值是用来判断存储过程是否被执行成功的依据,所以需要先定义一个变量@res存储10
    4. call p1(2,4,10); # 报错
    5. call p1(2,4,@res);
    6. # 查看结果
    7. select @res; # 执行成功,@res变量值发生了变化
    8. # 2、在python程序中调用
    9. pymysql链接mysql
    10. 产生的游表cursor.callproc('p1',(2,4,10)) # 内部原理:@_p1_0=2,@_p1_1=4,@_p1_2=10;
    11. cursor.execute('select @_p1_2;')
    12. # 3、存储过程与事务使用举例(了解)
    13. delimiter //
    14. create PROCEDURE p5(
    15. OUT p_return_code tinyint
    16. )
    17. BEGIN
    18. DECLARE exit handler for sqlexception
    19. BEGIN
    20. -- ERROR
    21. set p_return_code = 1;
    22. rollback;
    23. END;
    24. DECLARE exit handler for sqlwarning
    25. BEGIN
    26. -- WARNING
    27. set p_return_code = 2;
    28. rollback;
    29. END;
    30. START TRANSACTION;
    31. update user set balance=900 where id =1;
    32. update user123 set balance=1010 where id = 2;
    33. update user set balance=1090 where id =3;
    34. COMMIT;
    35. -- SUCCESS
    36. set p_return_code = 0; #0代表执行成功
    37. END //
    38. delimiter ;

    六.函数

    注意与存储过程的区别,MySQL内置的函数只能再sql语句中使用

    1. CREATE TABLE blog (
    2. id INT PRIMARY KEY auto_increment,
    3. NAME CHAR (32),
    4. sub_time datetime
    5. );
    6. INSERT INTO blog (NAME, sub_time)
    7. VALUES
    8. ('第1篇','2015-03-01 11:31:21'),
    9. ('第2篇','2015-03-11 16:31:21'),
    10. ('第3篇','2016-07-01 10:21:31'),
    11. ('第4篇','2016-07-22 09:23:21'),
    12. ('第5篇','2016-07-23 10:11:11'),
    13. ('第6篇','2016-07-25 11:21:31'),
    14. ('第7篇','2017-03-01 15:33:21'),
    15. ('第8篇','2017-03-01 17:32:21'),
    16. ('第9篇','2017-03-01 18:31:21');
    17. +----+--------------------------------------+---------------------+
    18. | id | NAME | sub_time | month
    19. +----+--------------------------------------+---------------------+
    20. | 1 | 第1篇 | 2015-03-01 11:31:21 | 2015-03
    21. | 2 | 第2篇 | 2015-03-11 16:31:21 | 2015-03
    22. | 3 | 第3篇 | 2016-07-01 10:21:31 | 2016-07
    23. | 4 | 第4篇 | 2016-07-22 09:23:21 | 2016-07
    24. | 5 | 第5篇 | 2016-07-23 10:11:11 | 2016-07
    25. | 6 | 第6篇 | 2016-07-25 11:21:31 | 2016-07
    26. | 7 | 第7篇 | 2017-03-01 15:33:21 | 2017-03
    27. | 8 | 第8篇 | 2017-03-01 17:32:21 | 2017-03
    28. | 9 | 第9篇 | 2017-03-01 18:31:21 | 2017-03
    29. +----+--------------------------------------+---------------------+
    30. select count(*) from blog group by month;
    31. select date_format(sub_time,'%Y-%m'),count(id) from blog group by date_format(sub_time,'%Y-%m');
    32. https://blog.csdn.net/GG_Bruse/article/details/131484538 # 补充的一些内置函数,可以了解一下

    七.流程控制

    if条件语句:

    1. delimiter //
    2. CREATE PROCEDURE proc_if ()
    3. BEGIN
    4. declare i int default 0;
    5. if i = 1 THEN
    6. SELECT 1;
    7. ELSEIF i = 2 THEN
    8. SELECT 2;
    9. ELSE
    10. SELECT 7;
    11. END IF;
    12. END //
    13. delimiter ;

    while循环:

    1. delimiter //
    2. CREATE PROCEDURE proc_while ()
    3. BEGIN
    4. DECLARE num INT ;
    5. SET num = 0 ;
    6. WHILE num < 10 DO
    7. SELECT
    8. num ;
    9. SET num = num + 1 ;
    10. END WHILE ;
    11. END //
    12. delimiter ;

    八.索引

    1.什么是索引

    索引就是一种数据结构,类似于书的目录。意味着以后再查数据应该先找目录再找数据,而不是用翻页的方式查询数据

    2.索引的介绍

    索引在MySQL中也叫做‘键’,是存储引擎用于快速找到记录的一种数据结构

    • primary key
    • unique key
    • index key

    注意:上面三种key前两种除了有加速查询的效果之外还有额外的约束条件(primary key:非空且唯一,unique key:唯一),而index key 没有任何约束功能只会帮你加速查询

    其本质都是通过不断缩小想要获取数据的范围来筛选出最终想要的结果,同时把随机的事件变成顺序的事件,也就是说,有了这种索引机制,我们可以总是用同一种查找方式来锁定数据

    3.索引的影响

    (1)在表中有大量数据的前提下,创建索引速度会很慢(建表的时候,如果明显需要索引,就提前加上)

    以后实际添加索引的时候,尽量在空表的时候添加,在创建表的时候就添加索引,此时添加索引是最快的

    如果表中数据已经有了,还要添加索引,也可以,只不过创建索引的速度会很慢,不建议这样做

    (2)在索引创建完毕后,对表的查询性能会大幅度提升,但是写的性能会降低

    写的性能影响不是很大,因为在实际中,写的频率很少,大部分操作都是查询

    具体给哪些字段添加索引还是要看实际的查询条件

    select * from user where name='' and password='';

    不要一建表就加索引,在一张表中,最多不要超过15个索引,索引越多,性能要求越高

    4.补充

    有哪些树:

    二叉树   平衡树   b树   b+树   b-树

    只有叶子结点存放真实数据,根和树枝节点存的仅仅是虚拟数据
    查询次数由树的层级决定,层级越低次数越少
    一个磁盘的大小是一定的,那也就意味着能存放的数据量是一定的,那么如何保证树的层级最低呢?一个磁盘存放占用空间比较小的数据项

    以后加索引的时候,尽量给字段中存的是数字的列加,我们使用主键查询速度很快

    select * from user where name = ''
    select * from user where id = ''  # 主键查询的更快一些

    5.测试索引

    准备:

    1. #1. 准备表
    2. create table s1(
    3. id int,
    4. name varchar(20),
    5. gender char(6),
    6. email varchar(50)
    7. );
    8. #2. 创建存储过程,实现批量插入记录
    9. delimiter $$ #声明存储过程的结束符号为$$
    10. create procedure auto_insert1()
    11. BEGIN
    12. declare i int default 1;
    13. while(i<1000000)do
    14. insert into s1 values(i,'jason','male',concat('jason',i,'@oldboy'));
    15. set i=i+1;
    16. end while;
    17. END$$ #$$结束
    18. delimiter ; #重新声明分号为结束符号
    19. #3. 查看存储过程
    20. show create procedure auto_insert1\G
    21. #4. 调用存储过程
    22. call auto_insert1();
    1. # 表没有任何索引的情况下
    2. select * from s1 where id=30000;
    3. # 避免打印带来的时间损耗
    4. select count(id) from s1 where id = 1000000;
    5. select count(id) from s1 where id = 1;
    6. # 给id做一个主键
    7. alter table s1 add primary key(id); # 速度很慢
    8. select count(id) from s1 where id = 1; # 速度相较于未建索引之前两者差着数量级
    9. select count(id) from s1 where name = 'jason' # 速度仍然很慢
    10. """
    11. 范围问题
    12. """
    13. # 并不是加了索引,以后查询的时候按照这个字段速度就一定快
    14. select count(id) from s1 where id > 1; # 速度相较于id = 1慢了很多
    15. select count(id) from s1 where id >1 and id < 3;
    16. select count(id) from s1 where id > 1 and id < 10000;
    17. select count(id) from s1 where id != 3;
    18. alter table s1 drop primary key; # 删除主键 单独再来研究name字段
    19. select count(id) from s1 where name = 'jason'; # 又慢了
    20. create index idx_name on s1(name); # 给s1表的name字段创建索引
    21. select count(id) from s1 where name = 'jason' # 仍然很慢!!!
    22. """
    23. 再来看b+树的原理,数据需要区分度比较高,而我们这张表全是jason,根本无法区分
    24. 那这个树其实就建成了“一根棍子”
    25. """
    26. select count(id) from s1 where name = 'xxx';
    27. # 这个会很快,我就是一根棍,第一个不匹配直接不需要再往下走了
    28. select count(id) from s1 where name like 'xxx';
    29. select count(id) from s1 where name like 'xxx%';
    30. select count(id) from s1 where name like '%xxx'; # 慢 最左匹配特性
    31. # 区分度低的字段不能建索引
    32. drop index idx_name on s1;
    33. # 给id字段建普通的索引
    34. create index idx_id on s1(id);
    35. select count(id) from s1 where id = 3; # 快了
    36. select count(id) from s1 where id*12 = 3; # 慢了 索引的字段一定不要参与计算
    37. drop index idx_id on s1;
    38. select count(id) from s1 where name='jason' and gender = 'male' and id = 3 and email = 'xxx';
    39. # 针对上面这种连续多个and的操作,mysql会从左到右先找区分度比较高的索引字段,先将整体范围降下来再去比较其他条件
    40. create index idx_name on s1(name);
    41. select count(id) from s1 where name='jason' and gender = 'male' and id = 3 and email = 'xxx'; # 并没有加速
    42. drop index idx_name on s1;
    43. # 给name,gender这种区分度不高的字段加上索引并不难加快查询速度
    44. create index idx_id on s1(id);
    45. select count(id) from s1 where name='jason' and gender = 'male' and id = 3 and email = 'xxx'; # 快了 先通过id已经讲数据快速锁定成了一条了
    46. select count(id) from s1 where name='jason' and gender = 'male' and id > 3 and email = 'xxx'; # 慢了 基于id查出来的数据仍然很多,然后还要去比较其他字段
    47. drop index idx_id on s1
    48. create index idx_email on s1(email);
    49. select count(id) from s1 where name='jason' and gender = 'male' and id > 3 and email = 'xxx'; # 快 通过email字段一剑封喉

    联合索引:

    1. select count(id) from s1 where name='jason' and gender = 'male' and id > 3 and email = 'xxx';
    2. # 如果上述四个字段区分度都很高,那给谁建都能加速查询
    3. # 给email加然而不用email字段
    4. select count(id) from s1 where name='jason' and gender = 'male' and id > 3;
    5. # 给name加然而不用name字段
    6. select count(id) from s1 where gender = 'male' and id > 3;
    7. # 给gender加然而不用gender字段
    8. select count(id) from s1 where id > 3;
    9. # 带来的问题是所有的字段都建了索引然而都没有用到,还需要花费四次建立的时间
    10. create index idx_all on s1(email,name,gender,id); # 最左匹配原则,区分度高的往左放
    11. select count(id) from s1 where name='jason' and gender = 'male' and id > 3 and email = 'xxx'; # 速度变快

  • 相关阅读:
    terraform简单的开始-vpc cvm创建
    在 Python 中打印二叉树
    R语言data.table导入数据实战:data.table数据列索引
    楼市越来越冷,业主们能否靠出租增值?
    [图解]《分析模式》漫谈07-反射,不是映射
    Java内存模型与线程(2)
    VPP DPDK,不是翻墙!!
    网络安全(黑客)自学
    SpringCloudAlibaba-3.分布式事务(Seata)
    Redis中的数据类型及与Mysql数据库同步方法
  • 原文地址:https://blog.csdn.net/qq_65852978/article/details/134055891