Oracle Concepts 中文版 (10g R2) Part I What Is Oracle? 第一部分 何为 Oracle? Chapter 1, Introduction to the Oracle Database第 1 章,Oracle 数据库简介 Part II Oracle Database Architecture 第二部分 Oracle 数据库体系结构 Chapter 2, Data Blocks, Extents, and Segments第 2 章,数据块,数据扩展
一.索引
应用
在使用MySQL或其他数据库的时候,往往需要给表添加索引,这样一般可以给数据的查询速度带来极大的提升。
概念
索引,可以理解成一本书的目录,用于快速了解和定位书本中的内容。而在MySQL中,索引是帮助其高效获取数据的、已排好序的数据结构
索引的数据结构
二叉树
红黑树
Hash表
B-Tree
…
索引案例
比如现在,MySQL中有这么一张表 test,需要进行查询(select * from test where id = 5)
id
value
1
12