摘要: MySQL补充知识 事务(重要) ACID A : 原子性 C : 一致性 I : 隔离性 D : 持久性 原子性(atomicity) 一个事务是一个不可分割的工作单位,事务中包括的诸操作要么都做,要么都不做 一致性(consistency) 事务必须是使数据库从一个一致性状态变到另一个一致性状态 阅读全文
posted @ 2022-02-22 16:50 Snails蜗牛 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 多表查询 数据准备 #建表 create table dep( id int primary key auto_increment, name varchar(20) ); create table emp( id int primary key auto_increment, name varch 阅读全文
posted @ 2022-02-22 16:33 Snails蜗牛 阅读(353) 评论(0) 推荐(0) 编辑
摘要: SQL查询关键字 数据准备 '''数据准备''' create table emp( id int primary key auto_increment, name varchar(20) not null, sex enum('male','female') not null default 'm 阅读全文
posted @ 2022-02-22 16:17 Snails蜗牛 阅读(549) 评论(0) 推荐(0) 编辑