存储引擎
什么是数据库存储引擎?
数据库引擎是数据库底层软件组件,不同的存储引擎提供不同的存储机制,索引技巧,锁定水平等功能,使用不同的数据库引擎,可以获得特定的功能
如何查看引擎?
--如何查看数据库支持的引擎 show engines; --查看当前数据的引擎: show create table 表名\G --查看当前库所有表的引擎: show table status\G
建表时指定引擎
create table yingqin (id int,name varchar(20)) engine='InnoDB';
修改表的引擎
alter table 表名 engine='引擎名称';
修改默认引擎
MyISAM 与 InnoDB 的区别
MyISAM:支持全文索引(full text);不支持事务;表级锁;保存表的具体行数;奔溃恢复不好。
Innodb:支持事务;以前的版本是不支持全文索引,但在5.6之后的版本就开始支持这个功能了;行级锁(并非绝对,当执行sql语句时不能确定范围时,也会进行锁全表,例如: update table set id=3 where name like 'a%';);不保存表的具体行数;奔溃恢复好。
什么时候选择什么引擎比较好
MyISAM:
InnoDB:
推荐用 InnoDB
索引
什么是索引?
索引是一个单独的,存储在磁盘中上的数据库结构,它们包含着对数据表里的所有记录的引用指针。使用索引可以快速的找出在某列或多列中有特定值的行。
索引的优点:
索引的缺点:
索引的常见类型:
普通索引与唯一索引
什么是普通索引?
普通索引(index)顾名思义就是各类索引中最为普通的索引,主要任务就是提高查询速度。其特点是允许出现相同的索引内容,允许空(null)值
什么是唯一索引?
唯一索引:(unique)顾名思义就是不可以出现相同的索引内容,但是可以为空(null)值
如何创建普通索引或者唯一索引?
--创建表的时候创建 create table test ( id int(7) zerofill auto_increment not null, username varchar(20), servnumber varchar(30), password varchar(20), createtime datetime, unique (id) )DEFAULT CHARSET=utf8; --直接为表添加索引 --语法:alter table 表名 add index 索引名称 (字段名称); --注意:假如没有指定索引名称时,会以默认的字段名为索引名称 alter table test add unique unique_username (username); --直接创建索引 --语法:create index 索引 on 表名 (字段名); create index index_createtime on test (createtime);
查看索引
--语法:show index from 表名\G show index from test\G
如何删除索引
--语法:drop index 索引名称 on 表名; drop index unique_username on test; --语法:alter table 表名 drop index 索引名; alter table test drop index createtime;
主键索引
什么是主键索引?
把主键添加索引就是主键索引,它是一种特殊的唯一索引,不允许有空值,而唯一索引(unique是允许为空值的)。指定为“PRIMARY KEY”
主键:主键是表的某一列,这一列的值是用来标志表中的每一行数据的。注意:每一张表只能拥有一个主键
创建主键:
--1)创建表的时候创建 --2)直接为表添加主键索引 --语法:alter table 表名 add primary key (字段名); alter table test add primary key (id);
删除主键:
--语法:alter table 表名 drop primary key; alter table test drop primary key;
注意:在有自增的情况下,必须先删除自增,才可以删除主键
--删除自增: alter table test change id id int(7) unsigned zerofill not null;
全文索引
什么是全文索引?
全文索引是将存储在数据库中的文章或者句子等任意内容信息查找出来的索引,单位是词。全文索引也是目前搜索引擎使用的一种关键技术。指定为 fulltext
--创建练习表的sql: create table command ( id int(5) unsigned primary key auto_increment, name varchar(10), instruction varchar(60) )engine=MyISAM; --插入数据sql: insert into command values('1','ls','list directory contents'); insert into command values('2','wc','print newline, word, and byte counts for each file'); insert into command values('3','cut','remove sections from each line of files'); insert into command values('4','sort','sort lines of text files'); insert into command values('5','find','search for files in a directory hierarchy'); insert into command values('6','cp','复制文件或者文件夹'); insert into command values('7','top','display Linux processes'); insert into command values('8','mv','修改文件名,移动'); insert into command values('9','停止词','is,not,me,yes,no ...');
添加全文索引:
--1)创建表的时候创建全文索引 --2)通过alter添加 alter table command add fulltext(instruction);
使用全文索引:
--语法:select * from 表名 where match (字段名) against ('检索内容'); select * from command where match(instruction) against ('sections');
查看匹配度:
select * from command where match(instruction) against ('directory');
停止词:
出现频率很高的词,将会使全文索引失效。
in boolean mode 模式:
in boolean mode:意思是指定全文检索模式为布尔全文检索(简单可以理解为是检索方式)
--语法:select * from 表名 where match (字段名) against ('检索内容' in boolean mode); select * from command where match(instruction) against ('direct*' in boolean mode);
注意点:使用通配符*时,只能放在词的后边,不能放前边。
删除全文索引:
alter table command drop index instruction;
注意点总结:
外键约束
什么是外键?
外键就是作用于两个表数据之间的链接的一列或多列,用来保证表与表之间的数据的完整性和准确性。
添加外键约束:
--语法:foreign key (字段名) references 关联的表名(关联表的字段名) --注意:主键跟外键的字段类型一定要相同 --create table 的方法: CREATE TABLE `employee` ( `empno` int(11) NOT NULL COMMENT '雇员编号', `ename` varchar(50) DEFAULT NULL COMMENT '雇员姓名', `job` varchar(30) DEFAULT NULL, `mgr` int(11) DEFAULT NULL COMMENT '雇员上级编号', `hiredate` date DEFAULT NULL COMMENT '雇佣日期', `sal` decimal(7,2) DEFAULT NULL COMMENT '薪资', `deptnu` int(11) DEFAULT NULL COMMENT '部门编号', PRIMARY KEY (`empno`), foreign key (deptnu) references dept(deptnu) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; --alter table的方法: alter table employee add foreign key (deptnu) references dept(deptnu);
删除外键约束:
注意:在干掉外键索引之前必须先把外键约束删除,才能删除索引
mysql> alter table employee drop index deptnu; ERROR 1553 (HY000): Cannot drop index 'deptnu': needed in a foreign key constraint mysql> mysql> alter table employee drop foreign key employee_ibfk_1; Query OK, 0 rows affected (0.01 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> mysql> alter table employee drop index deptnu; Query OK, 0 rows affected (0.01 sec) Records: 0 Duplicates: 0 Warnings: 0
注意点总结:
联合索引
什么是联合索引?
联合索引又称组合索引或者复合索引,是建立在俩列或者多列以上的索引。
创建联合索引
--语法:alter table 表名 add index(字段1,字段2,字段3); alter table test add index(username,servnumber,password);
删除联合索引
--语法:alter table test drop index 索引名; alter table test drop index username;
为什么要使用联合索引,而不使用多个单列索引?
联合索引的效率远远高于单列索引。假如创建了三个单列索引,并且查询条件中也存在这三列,但是 MySQL 只会选择最优的列索引,而不会三个索引都用上
联合索引的最左原则
以上面的索引为例,查询条件中必须有 username,才会去使用这个索引,否则不会去使用该索引
注意点总结:
以上就是MySql 存储引擎和索引相关知识总结的详细内容,更多关于MySql 存储引擎和索引的资料请关注呐喊教程其它相关文章!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。