MySQL基础索引,安全机制、自关联

MySQL 基础之索引

老师笔记

索引

索引用于快速查找具有特定列值的行。如果没有索引,MySQL必须从第一行开始,然后读取整个表以查找相关行。表越大,成本越高。如果表中有相关​​列的索引,MySQL可以快速确定要在数据文件中间寻找的位置,而无需查看所有数据。这比按顺序读取每一行要快得多。

类似于字典中的目录,查找字典内容时可以根据目录查找到数据的存放位置,然后直接获取即可。

本质上是告诉数据库的存储引擎如何快速找到我们所要的数据。所以 MySQL 的索引是在 MySQL 的存储引擎层实现的,而不是在其服务器层实现。

MySQL中常见索引有:

  • 普通索引
  • 唯一索引
  • 主键索引
  • 组合索引

普通索引

普通索引仅有一个功能:加速查询

/*创建表的同时创建索引*/
create table t1(
    id int not null auto_increment primary key,
    name varchar(32),
    email varchar(64),
    extra text,
    index ix_name(name)
    /*添加索引到列名 name, 索引名为 ix_name*/
)

/*单独创建索引*/
create index index_name on 表名称(列名称)
/*Example*/
create index index_name on student(name);

/*查看索引*/
show index from 表名称;
/*Example*/
show index from student;

/*删除索引*/
DROP INDEX index_name on 表名称;
/*Example*/
DROP INDEX index_name on student;

唯一索引
唯一索引有两个功能:加速查询 和 唯一约束(可含null)

/创建表和唯一索引/
create table t2(
    id int not null auto_increment primary key,
    name varchar(32),
    email varchar(64),
    unique index ix_name (name)
);

/创建唯一索引/
create unique index 索引名 on 表名(列名);

/删除唯一索引/
ALTER TABLE 表名 DROP INDEX 索引名;

主键索引
主键有两个功能:加速查询 和 唯一约束(不可含null)

当一个列被创建为主键是,它就会被赋予主机索引的属性。
**主键天生就是索引!!

/*创建表和创建主键*/
create table t3(
    id int ,
    name varchar(32) ,
    email varchar(64) ,
    primary key(name)
);

联合索引
联合索引是将n个列联合成一个索引

其应用场景为:频繁的同时使用 n 个列来进行查询,如:where name = 'shark' and age = 18。

create table studens(
    id int not null auto_increment primary key,
    name varchar(32) not null,
    age int not null,
)

create index idx_name_age on students(name,age);

如上创建联合索引之后,查询时可以这么用:

  • name and age -- 使用索引 where name='shark' and age=18;
  • name -- 使用索引where name='shark';

但在这里有一个限制 B树索引类型的联合索引使用限制

  • 匹配最左前缀的查询
    对于联合索引的使用上需要注意, where 自己的第一个条件的列名必须是组合索引列的最左边的那个。

下面是可以有效使用的方式

where name='shark';
where name='shark' and age>18;
 where name = 'shark'  and (age >18 or age = 10);

但是, 不能是下面的用法

where age = 18;
where name='shark'  or   age=19;

注意:对于同时搜索n个条件时,组合索引的性能好于多个单一索引合并。

匹配列前缀查询

name  like  'shark%'

匹配范围值查询

name > 'a' and name < 'c'

不可以使用 not in 和 <>
当有 3 列组成的索引时, 使用这个联合索引时,所有的字段不能跳过。
order_sn, order_name,order_date
where order_sn = '8998' and order_date = '20191010';
只能使用到 order_sn 这一个字段度索引,不能使用的 order_sn, order_date 的联合索引

SQl 执行计划

explain select name from t1 where   name='shark'\G

索引过多的缺点
1、增加写的压力
2、增加 MySQL 查询优化器的选择时间。

MySQL 安全机制

老师笔记

MySQL 安全控制

DCL(Data Control Language 数据库控制语言)

用于数据库授权、角色控制等操作

GRANT授权,为用户赋予访问权限
REVOKE取消授权,撤回授权权限

创建用户
    create user '用户名'@'客户端来源IP地址' identified by '密码';
删除用户
    drop user '用户名'@'客户端来源IP地址';
修改用户
    rename user '用户名'@'客户端来源IP地址' to '新用户名'@'客户端来源IP地址' ;
修改密码
    // 第一种方法:
    set password for '用户名'@'IP地址'=Password('新密码')

    // 第二种方法:
    alter user '用户名'@'客户端来源IP地址' identified by '新密码';

   // 第三种方法(忘记密码时,必须使用此方法修改密码):
    UPDATE mysql.user SET authentication_string=password('QFedu123!') WHERE user='root' and host='localhost';
  

  
PS:用户权限相关数据保存在mysql数据库的user表中,所以也可以直接对其进行操作(不建议)

权限管理

grant  权限 on 数据库.表  to  '用户'@'客户端来源IP地址' identified by '密码';   -- 授权并设置密码
revoke 权限 on 数据库.表 from '用户'@'客户端来源IP地址'    -- 取消权限



查看授权信息
查看授权语句

show grants for '用户'@'客户端来源IP地址';  

查看生效的授权信息

  • 针对所有库和表的权限,比如*.* 。 去 mysql.user 中查看
select * from mysql.user where user='shark'\G
  • 针对具体到库的权限,比如db_name.* 。 去mysql.db中查看
select * from mysql.db  where user='shark'\G
  • 针对具体表的授权,在 mysql.tables_priv中查看
select * from mysql.tables_priv where user='shark'\G

假如是 MySQL8.x

CREATE USER '你的用户名'@'localhost' IDENTIFIED BY '你的密码';
#创建新的用户
GRANT ALL PRIVILEGES ON 你的数据库名.* TO '你的用户名'@'localhost';
#把刚刚创建的数据库的管理权限给予刚刚创建的MySQL用户
FLUSH PRIVILEGES;
#刷新权限,使用设置生效

关于权限
参考官方文档

all privileges  除grant外的所有权限
select          仅查权限
select,insert   查和插入权限
...
usage                   无访问权限
alter                   使用alter table
alter routine           使用alter procedure和drop procedure
create                  使用create table
create routine          使用create procedure
create temporary tables 使用create temporary tables
create user             使用create user、drop user、rename user和revoke  all privileges
create view             使用create view
delete                  使用delete
drop                    使用drop table
execute                 使用call和存储过程
file                    使用select into outfile 和 load data infile
grant option            使用grant 和 revoke
index                   使用index
insert                  使用insert
lock tables             使用lock table
process                 使用show full processlist
show databases          使用show databases
show view               使用show view
update                  使用update
reload                  使用flush
shutdown                使用mysqladmin shutdown(关闭MySQL)
super                   使用change master、kill、logs、purge、master和set global。还允许mysqladmin调试登陆
replication client      服务器位置的访问
replication slave       由复制从属使用

关于数据库和表

对于目标数据库以及内部其他:
数据库名.*           数据库中的所有
数据库名.表          指定数据库中的某张表
数据库名.存储过程     指定数据库中的存储过程
*.*                所有数据库

关于用户和 IP

用户名@IP地址         用户只能在此 IP 下才能访问
用户名@192.168.1.%   用户只能在此 IP 段下才能访问(通配符%表示任意)
用户名@%.shark.com
用户名@%             用户可以再任意IP下访问(默认IP地址为%)

Example

create user 'shark'@'%';
grant all privileges on *.*  to 'shark'@'%' identified by '123';

立刻生效

/*将数据读取到内存中,从而立即生效。*/
flush privileges

也可以在创建用户的同时直接授权(mysql8.x 不可以)

grant select on *.*     /*设置查询数据的权限在所有的库和表*/
 to 'shark_2'@"%"       /*指定用户名和来源 ip*/
 identified by '123';   /*设置密码*/

自关联

老师笔记
一个事例,主要自己理解,理清数据之间的关系,看看老师笔记里面的事例。

你可能感兴趣的:(MySQL基础索引,安全机制、自关联)