Mysql基础(下)之函数,约束,多表查询,事务

news2024/11/24 20:50:10

👂 回到夏天(我多想回到那个夏天) - 傲七爷/小田音乐社 - 单曲 - 网易云音乐

截图自 劈里啪啦 -- 黑马Mysql,仅学习使用

👇原地址

47. 基础-多表查询-表子查询_哔哩哔哩_bilibili

目录

🦂函数

🌳字符串函数

🌳数值函数

🌳日期函数

🌳流程函数

🌳小结

🦂约束 

🍈概述

🍈演示

🍈外键约束

🍈外键删除更新行为

🍈小结

🦂多表查询 

🐱多表关系

🐱概述

🐱内连接

🐱外连接

🐱自连接

🐱联合查询union

🐱子查询

🐱标量子查询

🐱列子查询

🐱行子查询

🐱表子查询

🐱练习1

🐱练习2

🐱小结

🦂事务 

🐟简介

🐟操作演示

🐟四大特性ACID

🐟并发事务问题

🐟并发事务演示及隔离级别

🐟小结

🌼总结 


🦂函数

🌳字符串函数

-- ------------------函数演示-----------------------
-- concat
select concat('Hello', ' MySQL');

-- lower
select lower('HEllo');

-- upper
select upper('HEllo');

-- lpad
select lpad('hello', 3, 'as');
select lpad('hello', 10, 'as');

-- rpad
select rpad('haha', 2, 'UVA');
select rpad('haha', 11, 'UVA');

-- trim
select trim(' haha    ');
select trim(' Hello Mysql   hahaha  ');

-- substring
-- 索引从1开始
select substring('Hello, Man, MySQL haha', 1, 9);

-- 1.工号统一为5位数,不足5位前补0
update emp set workno = lpad(workno, 5, '0');

👆

🌳数值函数

-- 数值函数
-- ceil
select ceil(1.5);
select ceil(1.1);

-- floor
select floor(1.1);
select floor(1.9);

-- mod
select mod(3, 4);
select mod(5, 4);

-- rand
select rand();

-- round
select round(2.345, 2);
select round(2.3495, 3);
select round(2.3495, 1);

-- 案例:通过数据库函数,生成一个六位随机验证码
-- 有bug,可能生成5位数,需要补0
select round(rand()*1000000, 0); #保留0位小数
-- rand()0~1随机数, round()四舍五入保留0位小数, lpad左填充
select lpad(round(rand()*1000000, 0), 6, '0');

🌳日期函数

-- 日期函数
-- curdate()
select curdate();

-- curtime()
select curtime();

-- now()
select now();

-- year, month, day
select year(now());
select month(now());
select day(now());

-- date_add()
select date_add(now(), interval 51 day);
select date_add(now(), interval 51 month);
select date_add(now(), interval 51 year);

-- datediff  前 - 后
select datediff('2023-9-1', '2023-7-11');

-- 案例:查询所有员工入职天数,并根据入职天数倒序排序
select name, datediff(curdate(), entrydate) from emp;
select name, datediff(curdate(), entrydate) as 'entrydays' from emp order by entrydays desc;

🌳流程函数

-- 流程控制函数
-- if
select if(true, 'ok', 'error');
select if(false, 'ok', 'error');

-- ifnull
select ifnull('ok', 'default');
select ifnull('', 'default');
select ifnull(null, 'default');

-- case when then else end
-- 查询emp表的员工姓名和工作地址
-- (如果地址是上海/北京 --> 一线城市,否则 --> 二线
select
    name,
    (case workaddress when '北京' then '一线城市' when '上海' then '一线城市' else '二线城市' end)
from emp;

-- 案例:统计各个学员的成绩
-- >= 85,优秀
-- >= 60,及格
-- 否则,不及格
create table score(
    id int comment 'ID',
    name varchar(20) comment '姓名',
    math int comment '数学',
    english int comment '英语',
    chinese int comment '语文'
) comment '学员成绩表';

insert into score(id,name,math,english,chinese) VALUES (1,'Tom',67,88,95),(2,'Rose',23,66,90),(3,'Jack',56,98,76);

select
    id,
    name,
    (case when math >= 85 then '优秀' when math >= 60 then '及格' else '不及格' end) '数学',
    (case when english >= 85 then '优秀' when english >= 60 then '及格' else '不及格' end) '英语',
    (case when chinese >= 85 then '优秀' when chinese >= 60 then '及格' else '不及格' end) '语文'
from score;

🌳小结

🦂约束 

🍈概述

🍈演示

-- 约束演示
create table user(
    id int primary key auto_increment comment '主键',
    name varchar(10) not null unique comment '姓名',
    age int check (age > 0 && age <= 120) comment '年龄',
    status char(1) default '1' comment '状态',
    gender char(1) comment '性别'
) comment '用户表';
-- 插入数据
insert into user(name, age, status, gender)
    values('Tom1',19,'1','男'),('Tom2',25,'0','男');
insert into user(name, age, status, gender)
    values('Tom3',19,'1','男')

insert into user(name, age, status, gender)
    values(null,19,'1','男'); #错误,非空
insert into user(name, age, status, gender)
    values('Tom3',19,'1','男'); #错误,重复

insert into user(name, age, status, gender)
    values('Tom4',80,'1','男');
insert into user(name, age, status, gender)
    values('Tom4',-1,'1','男'); #错误,无效值年龄
insert into user(name, age, status, gender)
    values('Tom4',121,'1','男'); #错误,无效值年龄

insert into user(name, age, gender)
    values('Tom5',120,'男'); #status采取默认值

🍈外键约束

use itheima;

select database();

create table dept(
    id int auto_increment comment 'ID' primary key,
    name varchar(50) not null comment '部门名称'
)comment '部门表';
insert into dept (id, name) values (1, '研发部'),(2, '市场部'),(3, '财务部'),(4, '销售部'),(5, '总经办');

rename table emp to emp2;

create table emp(
    id int auto_increment comment 'ID' primary key,
    name varchar(50) not null comment '姓名',
    age int comment '年龄',
    job varchar(20) comment '职位',
    salary int comment '薪水',
    entrydate date comment '入职时间',
    managerid int comment '直属领导ID',
    dept_id int comment '部门ID'
)comment '员工表';

insert into emp(id, name, age, job, salary, entrydate, managerid, dept_id) values
            (1,'金庸',66,'总裁',20000,'2000-01-01',null,5),(2,'张无忌',20,'项目经理',12500,'2005-12-05',1,1),
            (3,'杨逍',33,'开发',8400,'2000-11-03',2,1),(4,'韦一笑',48,'开发',11000,'2002-02-05',2,1),
            (5,'常遇春',43,'开发',10500,'2004-09-07',3,1),(6,'小昭',19,'程序员鼓励师',6600,'2004-10-12',2,1);

-- 添加外键
alter table emp add constraint  fk_emp_dept_id foreign key (dept_id) references dept(id);

-- 删除外键
alter table emp drop foreign key fk_emp_dept_id;

🍈外键删除更新行为

create table dept(
    id int auto_increment comment 'ID' primary key,
    name varchar(50) not null comment '部门名称'
)comment '部门表';

insert into dept (id, name) values (1, '研发部'),(2, '市场部'),(3, '财务部'),(4, '销售部'),(5, '总经办');create table emp(
    id int auto_increment comment 'ID' primary key,
    name varchar(50) not null comment '姓名',
    age int comment '年龄',
    job varchar(20) comment '职位',
    salary int comment '薪水',
    entrydate date comment '入职时间',
    managerid int comment '直属领导ID',
    dept_id int comment '部门ID'
)comment '员工表';

insert into emp(id, name, age, job, salary, entrydate, managerid, dept_id) values
            (1,'金庸',66,'总裁',20000,'2000-01-01',null,5),(2,'张无忌',20,'项目经理',12500,'2005-12-05',1,1),
            (3,'杨逍',33,'开发',8400,'2000-11-03',2,1),(4,'韦一笑',48,'开发',11000,'2002-02-05',2,1),
            (5,'常遇春',43,'开发',10500,'2004-09-07',3,1),(6,'小昭',19,'程序员鼓励师',6600,'2004-10-12',2,1);


-- 外键的删除和更新行为
alter table emp add constraint fk_emp_dept_id foreign key (dept_id) references dept(id) on update cascade on delete cascade;

alter table emp add constraint fk_emp_dept_id foreign key (dept_id) references dept(id) on update set null on delete set null;

🍈小结

🦂多表查询 

🐱多表关系

-- -----------多表关系 演示----------------

use itheima;

-- 多对多
create table student(
    id int auto_increment primary key comment '主键ID',
    name varchar(10) comment '姓名',
    no varchar(10) comment '学号'
) comment '学生表';
insert into student values (null, '黛绮丝', '2000100101'),(null, '谢逊', '2000100102'),(null, '殷天正', '2000100103'),(null,'韦一笑','2000100104');

create table course(
    id int auto_increment primary key comment '主键ID',
    name varchar(10) comment '课程名称'
) comment '课程表';
insert into course values (null, 'Java'),(null,'PHP'),(null,'MySQL'),(null,'Hadoop');

-- 中间表 维护多对多关系
create table student_course(
    id int auto_increment primary key comment '主键',
    studentid int not null comment '学生ID',
    courseid int not null comment '课程ID',
    -- constraint 外键名 foreign key (外键字段) references 主表名(主表字段)
    constraint fk_courseid foreign key (courseid) references course (id),
    constraint fk_studentid foreign key (studentid) references student (id)
) comment '学生课程中间表';

insert into student_course values (null,1,1),(null,1,2),(null,1,3),(null,2,2),(null,2,3),(null,3,4);

右键中间表 -- 底部diagrams -- show visualization -- 查看多表关系的可视化界面👇

-- 一对一

create table tb_user(
    id int auto_increment primary key comment '主键ID',
    name varchar(10) comment '姓名',
    age int comment '年龄',
    gender char(1) comment '1: 男 , 2: 女',
    phone char(11) comment '手机号'
) comment '用户基本信息表';

create table tb_user_edu(
    id int auto_increment primary key comment '主键ID',
    degree varchar(20) comment '学历',
    major varchar(50) comment '专业',
    primaryschool varchar(50) comment '小学',
    middleschool varchar(50) comment '中学',
    university varchar(50) comment '大学', # unique保证一对一
    userid int unique comment '用户ID', # userid是外键,关联tb_user的主键
    -- constraint 外键名 foreign key (外键字段) references 主表名(主表字段)
    constraint fk_userid foreign key (userid) references tb_user(id)
) comment '用户教育信息表';

insert into tb_user(id,name,age,gender,phone) values
    (null,'黄渤',45,'1','18800001111'),
    (null,'冰冰',35,'2','18800002222'),
    (null,'码云',55,'1','18800008888'),
    (null,'李彦宏',55,'1','18800009999');

insert into tb_user_edu(id,degree,major,primaryschool,middleschool,university,userid) values
    (null,'本科','舞蹈','静安区第一小学','静安区第一中学','北京舞蹈学院',1),
    (null,'硕士','表演','朝阳区第一小学','朝阳区第一中学','北京电影学院',2),
    (null,'本科','英语','杭州市第一小学','杭州市第一中学','杭州师范大学',3),
    (null,'本科','应用数学','阳泉第一小学','阳泉第一中学','清华大学',4);

🐱概述

-- ------------------------------------> 多表查询 <--------------------------------------------
-- 准备数据
create table dept(
    id   int auto_increment comment 'ID' primary key,
    name varchar(50) not null comment '部门名称'
)comment '部门表';

create table emp(
    id  int auto_increment comment 'ID' primary key,
    name varchar(50) not null comment '姓名',
    age  int comment '年龄',
    job varchar(20) comment '职位',
    salary int comment '薪资',
    entrydate date comment '入职时间',
    managerid int comment '直属领导ID',
    dept_id int comment '部门ID'
)comment '员工表';

-- 添加外键
-- constraint 外键名 foreign key (外键字段) references 主表名(主表字段)
alter table emp add constraint fk_emp_dept_id foreign key (dept_id) references dept(id);

INSERT INTO dept (id, name) VALUES (1, '研发部'), (2, '市场部'),(3, '财务部'), (4, '销售部'), (5, '总经办'), (6, '人事部');
INSERT INTO emp (id, name, age, job,salary, entrydate, managerid, dept_id) VALUES
            (1, '金庸', 66, '总裁',20000, '2000-01-01', null,5),

            (2, '张无忌', 20, '项目经理',12500, '2005-12-05', 1,1),
            (3, '杨逍', 33, '开发', 8400,'2000-11-03', 2,1),
            (4, '韦一笑', 48, '开发',11000, '2002-02-05', 2,1),
            (5, '常遇春', 43, '开发',10500, '2004-09-07', 3,1),
            (6, '小昭', 19, '程序员鼓励师',6600, '2004-10-12', 2,1),

            (7, '灭绝', 60, '财务总监',8500, '2002-09-12', 1,3),
            (8, '周芷若', 19, '会计',48000, '2006-06-02', 7,3),
            (9, '丁敏君', 23, '出纳',5250, '2009-05-13', 7,3),

            (10, '赵敏', 20, '市场部总监',12500, '2004-10-12', 1,2),
            (11, '鹿杖客', 56, '职员',3750, '2006-10-03', 10,2),
            (12, '鹤笔翁', 19, '职员',3750, '2007-05-09', 10,2),
            (13, '方东白', 19, '职员',5500, '2009-02-12', 10,2),

            (14, '张三丰', 88, '销售总监',14000, '2004-10-12', 1,4),
            (15, '俞莲舟', 38, '销售',4600, '2004-10-12', 14,4),
            (16, '宋远桥', 40, '销售',4600, '2004-10-12', 14,4),
            (17, '陈友谅', 42, null,2000, '2011-10-12', 1,null);

-- 多表查询
select * from emp; #单表查询
select * from emp, dept; # 6 * 17 = 102 笛卡尔积
-- 消除笛卡尔积  无效字段
select * from emp, dept where emp.dept_id = dept.id;

🐱内连接

use itheima;
-- 内连接演示
-- 1.查询每一个员工姓名,及关联的部门名称(隐式内连接)
-- 表结构:emp, dept
-- 连接条件:emp.dept_id = dept.id(外键)
select * from emp, dept where emp.dept_id = dept.id;
select emp.name, dept.name from emp, dept where emp.dept_id = dept.id;
#起别名后,就不能通过表名来操作
select e.name, d.name from emp e, dept d where e.dept_id = d.id; #起别名

-- 2.查询每一个员工姓名,及关联的部门名称(显示内连接)--- INNER JOIN...ON...
select e.name, d.name from emp e inner join dept d on e.dept_id = d.id;
select e.name, d.name from emp e join dept d on e.dept_id = d.id;

🐱外连接

-- 外连接演示
-- 1.查询emp表的所有数据,和对应的部门信息(左外连接)
-- 表结构:emp, dept
-- 连接条件:emp.dept_id = dept.id
select * from emp e left outer join dept d on e.dept_id = d.id;
select e.*, d.name from emp e left outer join dept d on e.dept_id = d.id;
select e.*, d.name from emp e left join dept d on e.dept_id = d.id;

-- 2.查询dept表的所有数据,和对应的员工信息(右外连接)
#右外连接,会完全包含右表的数据
select d.*, e.* from emp e right join dept d on e.dept_id = d.id;
#用左外连接实现相同需求 ↓
select d.*, e.* from dept d left join emp e on e.dept_id = d.id;

🐱自连接

-- 自连接
-- 1.查询员工 及其 所属领导的名字
-- 表结构:emp
#将同一张表,看成,2张表
#自连接必须给表起别名
select * from emp a, emp b where a.managerid = b.id;
#将a的外键managerid,指向,b的主键id
select a.name, b.name from emp a, emp b where a.managerid = b.id;

-- 2.查询所有员工 emp 及其领导的名字 emp,如果员工没有领导,也需要查询出来
# 需完全包含左表 所以用 外连接
-- 表结构:emp a, emp b
select * from emp a left join emp b on a.managerid = b.id;
select a.name '员工', b.name '领导' from emp a left join emp b on a.managerid = b.id;

🐱联合查询union

将结果集合并

-- union all ,union
-- 1.薪资低于5000的员工,和年龄大于50岁的,全部查询出来
select * from emp e where salary < 5000
union all
select * from emp e where age > 50;

-- 合并后去重  去掉all(鹿杖客)
select * from emp e where salary < 5000
union
select * from emp e where age > 50;

-- 联合查询的 列数 需要一致,select后查询内容的列数要一样
select name, age, salary from emp e where salary < 5000
union
select name, age, salary from emp e where age > 50;

🐱子查询

🐱标量子查询

-- ------------------------ 子查询 --------------------------
-- 标量子查询

-- 1.查询“销售部”所有员工信息
-- a.查询“销售部“部门ID
select id from dept where name = '销售部';

-- b.根据销售部ID,查询员工信息
select * from emp where dept_id = 4;
-- 合二为一查询
select * from emp where dept_id = (select id from dept where name = '销售部');

-- 2.查询“方东白”之后入职的员工信息
select * from emp where entrydate > (select entrydate from emp where name = '方东白');

🐱列子查询

-- 列子查询

-- 1.查询”销售部”和“市场部”所有员工信息
-- a.销售部 和 市场部 部门ID
select id from dept where name = '销售部' or name = '市场部';
-- b.根据部门ID查询信息
select * from emp where dept_id in (select id from dept where name = '销售部' or name = '市场部');

-- 2.查询比财务部人工资都高的员工信息
-- a.所有财务部的人员工资
select id from dept where name = '财务部';
select salary from emp where dept_id = (select id from dept where name = '财务部');
-- b.比 财务部 所有人员工资高的员工信息
select * from emp where salary > all (select salary from emp where dept_id = (select id from dept where name = '财务部'));

-- 3.查询比研发部其中任一人工资高的员工信息
select * from emp where salary > any (select salary from emp where dept_id = (select id from dept where name = '研发部'));

🐱行子查询

-- 行子查询
-- 1.查询与“张无忌”的薪资及直属领导相同的员工信息
-- a.查询“张无忌”的薪资及直属领导
select salary, managerid from emp where name = '张无忌';

-- b.查询与“张无忌”薪资及直属领导相同的员工信息
select * from emp where salary = 12500 and managerid = 1;
select * from emp where (salary, managerid) = (12500, 1);
select * from emp where (salary, managerid) = (select salary, managerid from emp where name = '张无忌');

🐱表子查询

表 子查询,返回多行多列的数据

-- 表 子查询

-- 1.查询与“鹿杖客”,“宋远桥”的职位和薪资相同的员工信息
-- a.查询“鹿杖客” “宋远桥”的职位和薪资
select job, salary from emp where name = '鹿杖客' or name = '宋远桥';
-- b.查询他俩的职位和员工信息
select * from emp where (job, salary) in (select job, salary from emp where name = '鹿杖客' or name = '宋远桥');

-- 2.查询入职日期是“2006-01-01”后的员工信息和部门信息
-- a.入职日期 ... 之后的员工信息
select * from emp where entrydate > '2006-01-01';
-- b.查询这部分员工,对应的部门信息
# a中子查询的结果作为临时表存在 from(...)
select * from (select * from emp where entrydate > '2006-01-01') e left join dept d on e.dept_id = d.id;
select e.*, d.* from (select * from emp where entrydate > '2006-01-01') e left join dept d on e.dept_id = d.id;

🐱练习1

重点是第5个需求👇

use itheima;
-- ------------------> 多表查询案例 <-----------------------
create table salgrade(
    grade int,
    losal int, #low salary 下限
    hisal int #hith salsary 上限
) comment '薪资等级表';

insert into salgrade values (1,0,3000); #等级1 0-3000
insert into salgrade values (2,3001,5000);
insert into salgrade values (3,5001,8000);
insert into salgrade values (4,8001,10000);
insert into salgrade values (5,10001,15000);
insert into salgrade values (6,15001,20000);
insert into salgrade values (7,20001,25000);
insert into salgrade values (8,25001,30000);


-- 1.查询员工姓名,年龄,职位,部门信息(隐式内连接)
-- emp, dept
-- 连接条件:emp.dept_id = dept.id
select * from emp e, dept d where e.dept_id = d.id;
select e.name, e.age, e.job, d.name from emp e, dept d where e.dept_id = d.id;

-- 2.查询年龄小于30岁的员工姓名,年龄,职位和部门信息(显式内连接)
select e.name, e.age, e.job, d.name from emp e join dept d on e.dept_id = d.id where e.age < 30;

-- 3.查询拥有员工的部门ID,部门名称
-- 哪些部门下有员工 -> 2个表的交集 -> 内连接
select d.id, d.name from emp e, dept d where e.dept_id = d.id;
# distinct 结果去重
select distinct d.id, d.name from emp e, dept d where e.dept_id = d.id;

-- 4.查询所有年龄大于40岁的员工,及其归属的部门名称;若未分配部门,也需要显示
# '陈友谅'没有部门, 也需要展示, 使用外连接
-- 表:emp, dept
-- 连接条件:emp.dept_id = dept.id
select e.*, d.name from emp e left join dept d on e.dept_id = d.id where e.age > 40;

-- 5.查询所有员工的工资等级
-- 表:emp, salgrade
-- 连接条件:emp.salary >= salgrade.losal and emp.salary <= salgrade.hisal
select e.name, e.salary, s.grade, s.losal, s.hisal from emp e, salgrade s where e.salary >= s.losal and e.salary <= s.hisal;
select e.name, e.salary, s.grade, s.losal, s.hisal from emp e, salgrade s where e.salary between s.losal and s.hisal;

🐱练习2

小tips

当表越来越多,sql语句越来越长,为了方便查看,我们借助Datagrip

右键选中的语句 Reformat code,格式化语句👇

需求12,学生与课程,多对多的关系

-- 6.查询 “研发部” 所有员工的 信息 及 工资等级
-- 表:emp, salgrade, dppt
# 联查 n 张 表,至少有 n - 1个连接条件
-- 连接条件1:e.salary between s.losal and s.hisal
-- 连接条件2:e.dept_id = d.id
-- 查询条件:d.name = '研发部'
select e.*, s.grade
from emp e,
     dept d,
     salgrade s
where e.dept_id = d.id
  and (e.salary between s.losal and s.hisal)
  and d.name = '研发部';

-- 7.查询 “研发部” 员工 平均工资
-- 表:emp, dept
-- 连接条件:e.dept_id = d.id
# 平均用聚合函数 avg()
select avg(e.salary)
from emp e,
     dept d
where e.dept_id = d.id
  and d.name = '研发部';

-- 8.查询工资比 “灭绝” 高的员工信息
-- a.查询 ‘灭绝’ 的薪资
select salary
from emp
where name = '灭绝';
-- b.查询比 她 工资 高的员工数据
select *
from emp
where salary > 8500;
# 标量子查询
select *
from emp
where salary > (select salary from emp where name = '灭绝');

-- 9.查询比平均薪资高的员工信息
-- a.查询员工 平均薪资
select avg(salary)
from emp;
-- b.查询比 平均工资 高的员工信息
select *
from emp
where salary > (select avg(salary) from emp);

-- 10.查询低于本部门 平均工资 的员工信息
-- a.查询指定部门 平均工资
select avg(e1.salary)
from emp e1
where e1.dept_id = 1;
select avg(e1.salary)
from emp e1
where e1.dept_id = 2;
-- b.查询 低于 本部门 平均工资 的员工信息
# e2.dept_id 表示当前部门, e1
select *,
       (select avg(e1.salary)
        from emp e1
        where e1.dept_id = e2.dept_id)
from emp e2
where e2.salary < (select avg(e1.salary) from emp e1 where e1.dept_id = e2.dept_id);

-- 11.查询所有部门信息,并统计部门的员工人数
# select后的子查询
select d.id, d.name, (select count(*) from emp e where e.dept_id = d.id) '人数'
from dept d;
select count(*)
from emp
where dept_id = 1;

-- 12.查询所有学生的选课情况,展示出学生名称,学号,课程名称
-- 表:student, course, student_course
# 学生与课程 多对多 中间表至少包含2个外键  分别关联两方主键
-- 连接条件:student.id = student_course.studentid, course.id = student_course.courseid
select s.name, s.no, c.name
from student s,
     student_course sc,
     course c
where s.id = sc.studentid #连接条件  消除无效笛卡尔积
  and sc.courseid = c.id;

🐱小结

🦂事务 

🐟简介

🐟操作演示

方式一方式二

use itcast;
-- -------------------- 事务操作 ----------------------
-- 数据准备
create table account(
    id int auto_increment primary key comment '主键ID',
    name varchar(10) comment '姓名',
    money int comment '余额'
) comment '账户表';
insert into account(id, name, money) values (null,'张三',2000),(null,'李四',2000);

-- 恢复数据
update account set money = 2000 where name = '张三' or name = '李四';

select @@autocommit; # 默认自动提交,返回1
set @@autocommit = 1; # 设置为0手动1自动提交

-- 转账操作
-- 1.查询张三账户余额
select * from account where name = '张三';

-- 2.将张三账户余额 - 1000
update account set money = money - 1000 where name = '张三';

程序执行出错...
-- 3.李四账户余额 + 1000
update account set money = money + 1000 where name = '李四';

-- 提交事务
commit;

-- 回滚事务
rollback;

-- 方式二 ------------------------
start transaction; #开启事务, 手动控制

select * from account where name = '张三';
update account set money = money - 1000 where name = '张三';
程序执行出错...
update account set money = money + 1000 where name = '李四';

-- 提交事务
commit;
-- 回滚事务
rollback;

🐟四大特性ACID

原子,一致

隔离

 持久

🐟并发事务问题

脏读

不可重复读

幻读

🐟并发事务演示及隔离级别

(事务隔离级别   UP↑)  (效率  DOWN↓

用2个cmd模拟客户端,2个并发事务的操作(一个cmd代表一个独立的事务)

提示:Windows -- cmd可以按上下键,快速切换历史指令

Read uncommitted -- 脏读 √

-- cmd一号
mysql -u root -p
123456
use itcast;
set session transaction isolation level read uncommitted; #设置事务隔离级别
select * from account;
start transaction; #开启事务
select * from account;

-- cmd二号
mysql -u root -p
123456
use itcast;
start transaction; #开启事务
update account set money = money - 1000 where name = '张三'; #修改字段

-- cmd一号
select * from account;

-- cmd二号
commit;

-- cmd一号
select * from account;
commit;

Read committed 脏读 -- ×

-- cmd 1
mysql -u root -p
******
use itcast;
set session transaction isolation level read committed; #设置隔离级别
start transaction; #开启事务
select * from account;

-- cmd 2
start transaction;
update account set money = money - 1000 where name = '张三';

-- cmd 1
select * from account; #未改变

-- cmd 2
commit; #提交后才能在cmd 1中查到变化

-- cmd 1
select * from account; #已改变
commit;

......  --> 55. 基础-事务-并发事务演示及隔离级别_哔哩哔哩_bilibili

幻读

mysql> insert into account(id, name, money) values (3,'大刀王五',2000);
ERROR 1062 (23000): Duplicate entry '3' for key 'account.PRIMARY' #插入报错重复已有
mysql> select * from account where id = 3;
Empty set (0.00 sec) #查询又说没有

🐟小结

🌼总结 

黑马Mysql基础篇告一段落,后续要学习进阶和运维的内容,进阶里包含了索引,SQL优化,InnoDB的内容。

考虑到字节青训营的项目,应该是学完索引优化就行了,还不需要接触InnoDB和运维

下步关于Mysql的学习,决定,将《Mysql必知必会》1~21章(视图之前)速刷,对应黑马Mysql基础篇的内容

值得一提的是,《Mysql必知必会》还讲到了正则表达式,这点是黑马Mysql所欠缺

总之,查漏补缺,互相印证,放18,19,20年,弄懂《Mysql必知必会》,再跟一遍Mysql黑马这样的一套视频,Mysql,有个增删改查的项目,Mysql这块就是不是问题了,可22,23的形势来看,你还得会InnoDB和运维的内容

今年是过去10年最差的一年,但也是未来10年最好的一年,奥力给!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/782895.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Spark(35):Structured Streaming 概述

目录 0. 相关文章链接 1. 什么是Structured Streaming 2. Structure Streaming 快速入门 2.1. 导入依赖 2.2. 代码实现 2.3. 程序测试 2.4. 代码说明 0. 相关文章链接 Spark文章汇总 1. 什么是Structured Streaming 从 spark2.0 开始, spark 引入了一套新的流式计算模…

新Viewport单位

本文为翻译本文译者为 360 奇舞团前端开发工程师原文标题&#xff1a;New Viewport Units原文作者&#xff1a;Ahmad Shadeed原文地址&#xff1a;https://ishadeed.com/article/new-viewport-units/ 自 2012 年以来&#xff0c;我们一直在使用 CSS viewport 单位。它们对于帮助…

RGB简单人脸活体检测(Liveness Detection)

参考&#xff1a; https://github.com/minivision-ai/Silent-Face-Anti-Spoofing&#xff08;主要这个库&#xff09; https://github.com/computervisioneng/face-attendance-system&#xff08;使用案例&#xff09; ##概念&#xff1a; 活体检测是指针对人脸识别过程中的人脸…

TSDB - VictoriaMetrics 技术原理浅析

一、前言 在监控领域&#xff0c;通常需要指标存储组件TSDB&#xff0c;目前开源的TSDB组件比较多&#xff0c;各个组件性能、高可用性、维护成本等等各有差异。本文不分析选型问题&#xff0c;重点讲解VictoriaMetrics&#xff08;后面简称为vm&#xff09;。 有兴趣的朋友建议…

Linux中常用的一些shell命令

很多的时候我们知道有一个命令&#xff0c;但不知道它的详细用法&#xff0c;可以来搜索下。但有些时候压根不知道有这个命令&#xff0c;比如vimdiff和diff这两个命令&#xff0c;知道人就比较少。 本节内容主要汇总一下Linux中常用的一些shell命令。 1. 文件和目录操作 ls …

win11安装MySQL5.7.43的问题清单

文章目录 1、win11查看自己电脑有没有安装mysql法1法2 2、完全清除之前安装的mysql3、 mysql的安装法1法2 4、遇到的一些问题1) ‘mysql‘不是内部或外部命令&#xff0c;也不是可运行的程序或批处理文件2) 忘记mysql的密码3)mysql启动不了:本地计算机上的MySQL服务启动后停止4…

机器学习深度学习——torch.nn模块

机器学习&&深度学习——torch.nn模块 卷积层池化层激活函数循环层全连接层 torch.nn模块包含着torch已经准备好的层&#xff0c;方便使用者调用构建网络。 卷积层 卷积就是输入和卷积核之间的内积运算&#xff0c;如下图&#xff1a; 容易发现&#xff0c;卷积神经网…

汽车养护店服务难题,看帕凝怎样解决?

中国汽车市场庞大&#xff0c;入户已然成为标配&#xff0c;加之新能源汽车近些年高增量&#xff0c;更促进了行业增长。而汽车后市场也迎来了一系列变化&#xff0c;客户服务前后路径需完善&#xff0c;商家们应该如何数字化经营呢&#xff1f; 接下来让我们看看【帕凝汽车养…

提升内功之模拟实现库函数atoi

本文包含知识点&#xff1a; 库函数atoi的使用和模拟实现枚举常量的运用fgets代替gets函数读取字符串isspace isdigit库函数的使用 一、库函数atoi的介绍与使用atoi的介绍atoi的使用细节 二、库函数atoi的模拟实现 一、库函数atoi的介绍与使用 atoi的介绍 函数介绍 头文件——…

密码学学习笔记(十七 ):Edwards曲线数字签名算法 - edDSA

Edwards曲线数字签名算法(Edwards-curve Digital Signature Alogorithm, edDSA)由Daniel J. Bernstein等人在2011年提出&#xff0c;它是一种使用基于扭曲爱德华兹曲线的Schnorr签名变体的数字签名方案。 EdDSA的一个特殊之处在于&#xff0c;该方案不要求每次签名都是用全新的…

Spring项目如何创建?Bean对象是如何存储的?

博主简介&#xff1a;想进大厂的打工人博主主页&#xff1a;xyk:所属专栏: JavaEE进阶 目录 文章目录 一、创建Spring项目 1.1 创建Maven项目 2.2 配置国内源 二、Bean对象的存储和读取 2.1 添加spring配置文件 2.2 创建Bean对象 2.3 读取Bean对象 2.3.1 得到spring上下文对象…

前端技术Vue学习笔记--001

前端技术Vue学习笔记 文章目录 前端技术Vue学习笔记1、Vue2和Vue3比较2、Vue简介3、Vue快速上手4、插值表达式{{}}5、Vue响应式特性6、Vue指令6.1、v-html指令6.2、v-show指令和v-if指令6.3、v-else指令和v-else-if指令6.4、v-on指令6.4.1、v-on指令基础6.4.2、v-on调用传参 6.…

生命的样子

bbc纪录片《王朝》第一季就让我颇为震撼&#xff0c;第二季拖到现在才看&#xff0c;不过好在看了《晚酌de流派》之后&#xff0c;现在对待上好的游戏和视频都要颇有仪式感的情况下食用&#xff0c;夜深人静&#xff0c;配着暖灯&#xff0c;一杯茶&#xff0c;伴随大卫爱登堡的…

Lesson2——时间复杂度与空间复杂度

前言&#xff1a; 一个物品的好坏&#xff0c;我们可以通过体验、口碑、销量等因素判断。那一个算法的好坏我们怎么判断呢&#xff1f; 目录&#xff1a; 1. 算法的效率 2. 时间复杂度 3. 空间复杂度 4. 常见时间复杂度以及复杂度oj练习 一、算法的效率 1、如何衡量一个算…

react-draft-wysiwyg富文本编辑器

在React项目中使用 yarn add react-draft-wysiwyg draft-js or npm i react-draft-wysiwyg draft-js推荐在项目中单独创建一个富文本编辑器组件 import { Editor } from "react-draft-wysiwyg"; import { EditorState, convertToRaw, ContentState } from draft-js…

12、动手学深度学习——循环神经网络从零实现+Pytorch内置函数实现:代码详解

1、基础知识 参考文章&#xff1a;8.4. 循环神经网络 2、从零开始实现 本节将上述描述&#xff0c; 从头开始基于循环神经网络实现字符级语言模型。 这样的模型将在H.G.Wells的时光机器数据集上训练。 首先&#xff0c; 我们先读取数据集。 %matplotlib inline import math…

陆拾柒- 如何通过数据影响决策(二)

是否曾感觉自己已经很努力了&#xff0c;但却一直被人说表现的比以前差了。 虽然古语有云“眼见为实”&#xff0c;但着眼之处很有可能是错的。 一、某咖啡店近期销量 7月17日准备要开大会时&#xff0c;负责小程序渠道的同事看到7月17日趋势下跌之后&#xff0c;就开始想办法…

fatal: unable to connect to github.com:github.com[0:20.205.243.166]: errno=Unknown error

git&#xff1a;fatal: unable to connect to github.com:github.com[0:20.205.243.166]: errnoUnknown error 在 bash 执行命令 git clone 时 报 &#xff1a; fatal: unable to connect to github.com:github.com[0: 20.205.243.166]: errnoUnknown error 发生此错误是因为 g…

【C++】string类的模拟实现(增删查改,比大小,运算符重载)

文章目录 1.1大框架1.2基本函数&#xff1a;2.成员函数2.0构造函数2.05析构函数2.09拷贝构造函数补充&#xff1a;预留存储空间&#xff08;reserve&#xff09; 2.1增加字符&#xff08;push_back&#xff0c;append&#xff0c;s&#xff09;push_backappends 2. 删除字符&am…

SpringCloud-Alibaba之Seata处理分布式事务

一ID三组件模型 Transaction ID XID 全局唯一的事务ID Transaction Coordinator(TC) 事务协调器&#xff0c;维护全局事务的运行状态&#xff0c;负责协调并驱动全局事务的提交或回滚 Transaction Manager™ 控制全局事务的边界&#xff0c;负责开启一个全局事务&#xff0c;…