总结一句话就是索引的作用就是加快对表中记录的查找和排序
索引随可以提升数据库查询的速度,但并不是任何情况下都适合创建索引。因为索引本身会消耗系统资源,在有索引的情况下,数据库会先进行索引查询,然后定位到具体的数据行,如果索引使用不当,反而会增加数据库的负担。
索引可分为5类
创建方法
最基本的索引类型,没有唯一性之类的限制
直接创建索引
create index 索引名 on 表名 (列名[(length)]);
(列名[(length)]:length 为可选项,如果忽略 length 的值,则使用整个列的值作为索引。
如果指定使用列的前 length 个字符来创建索引,这样有利于减小索引文件的大小。
索引名建议以 “index” 结尾。
修改表方式创建
alter table 表名 add index 索引名 (列名);
例:alter table member add index id_index (id);
select id from member;
select id,name from member;
直接创建唯一索引
create unique index 索引名 on 表名 (列名);
例:select * from member;
create unique index address_index on member (address);
create unique index name_index on member (name);
show create table member;
修改表方式创建
alter table 表名 add unique 索引名 (列名);
例:alter table member add unique cardid_index (cardid);
修改方式创建索引
alter table 表名 add primary key (列名);
创建表的时候指定索引
create table 表名 (字段1 数据类型,字段2 数据类型,primary key (列名));
例:create table test1 (id int primary key,name varchar(20));
create table test2 (id int,name varchar(20),primary key (id));
show create table test1;
show create table test2;
修改表方式创建组合索引
alter table 表名 add index 索引名(列名);
创建表的时候指定组合索引
create index 索引名 on 表名 (字段1 数据类型,字段2 数据类型);
直接创建索引
create fulltext index 索引名 on 表名 (列名);
修改表方式指定全文索引
alter table 表名 add fulltext 索引名 (列名);
创建表的时候指定全文索引
create table 表名 (字段1 数据类型,字段2 数据类型,fulltext 索引名 (列名));
#数据类型可以为 CHAR、VARCHAR 或者 TEXT
使用全文索引查询
SELECT * FROM 表名 WHERE MATCH(列名) AGAINST('查询内容');
例:select * from member where match(remark) against('this is vip');
show index from 表名;
show index from 表名\G 竖向显示表索引信息
show keys from 表名;
show keys from 表名\G
各字段的含义如下:
Table | 表的名称 |
---|---|
Non_unique | 如果索引不能包括重复词,则为 0;如果可以,则为 1 |
Key_name | 索引的名称 |
Seq_in_index | 索引中的列序号,从 1 开始 |
Column_name | 列名称 |
Collation | 列以什么方式存储在索引中。在 MySQL 中,有值‘A’(升序)或 NULL(无分类) |
Cardinality | 索引中唯一值数目的估计值 |
Sub_part | 如果列只是被部分地编入索引,则为被编入索引的字符的数目。如果整列被编入索引,则为 NULL |
Packed | 指示关键字如何被压缩。如果没有被压缩,则为 NULL |
Null | 如果列含有 NULL,则含有 YES。如果没有,则该列含有 NO |
Index_type | 用过的索引方法(BTREE, FULLTEXT, HASH, RTREE) |
Comment | 备注 |
drop index 索引名 on 表名;
例:drop index name_index on member;
alter table 表名 drop index 索引名;
例:alter table member drop id_index;
show index from member;
alter table 表名 drop primary key;
explain一些相关的参数:
指事务是一个不可再分割的工作单位,事务中的操作要么都发生,要么都不发生
指的事务开始之前和事务结束以后,数据库的完整性约束没有被破坏。
指在并发环境中,当不同的事务同时操纵相同的数据时,每个事务都有各自的完整的数据空间
在事务完成以后,该事务所对数据库所作的更改便持久的保存在数据库之中,并不会被回滚。
在事务管理中,原子性是基础,隔离性是手段,一致性是目的,持久性是结果
事务之间的相互影响分为几种,分别为:
隔离 | 说明 | 效果 |
---|---|---|
read uncommitted | 读取尚未提交的数据 | 不解决脏读 |
read committed | 读取已经提交的数据 | 可以解决脏读 |
repeatable read | 重复读取 | 可以解决脏读 和 不可重复读 —mysql默认的 |
serializable | 串行化 | 可以解决 脏读 不可重复读 和 虚读—相当于锁表 |
show global variables like '%isolation%';
select @@global.tx_isolation;
show session variables like '%isolation%';
select @@session.tx_isolation;
set global transaction isolation level read committed;
set @@global.tx_isolation='read committed'
set session transaction isolation level repeatable read;
set @@session.tx_isolation='read committed';
BEGIN 或 START TRANSACTION:显式地开启一个事务。
COMMIT 或 COMMIT WORK:提交事务,并使已对数据库进行的所有修改变为永久性的。
ROLLBACK 或 ROLLBACK WORK:回滚会结束用户的事务,并撤销正在进行的所有未提交的修改。
SAVEPOINT S1:使用 SAVEPOINT 允许在事务中创建一个回滚点,一个事务中可以有多个 SAVEPOINT;“S1”代表回滚点名称。
ROLLBACK TO [SAVEPOINT] S1:把事务回滚到标记点。
案列
create database csgo;
use csgo;
create table class(
id int(10) primary key not null,
name varchar(40),
money double
);
insert into class values(1,'A',1000);
insert into class values(2,'B',1000);
select * from class;
begin;
update class set money= money -100 where name='A';
select * from class;
commit;
quit
mysql -uroot -pabc123
use csgo;
select * from class;
begin;
update class set money= money +100 where name='A';
select * from class;
rollback;
quit
mysql -u root -p
use csgo;
select * from class;
begin;
update class set money= money +100 where name='A';
select * from class;
savepoint S1; #设置回滚点
update class set money= money +100 where name='B';
select * from class;
savepoint S2; #设置回滚点
insert into class values(3,'C',1000);
select * from class;
rollback to savepoint S1; 回到回滚点一当时的状态
select * from class;
set autocommit=0; #禁止自动提交
set autocommit=1; #开启自动提交,Mysql默认为1
show variables like 'autocommit'; #查看Mysql中的AUTOCOMMIT值