索引是若干数据行的关键字的列表,查询数据时,通过索引中的关键字可以快速定位到要访问的记录所在的数据块,从而大大减少读取数据块的I/O次数,因此可以显著提高性能。
索引的原理
下面通过查询数据表scott.student的ROWID列为例,在中执行下面的语句,查询结果如图7.38所示。
―――――――――――――――――――――――――――――――――――――
select rowid,student_id,name,professional,birthday,director_id from scott.student;
―――――――――――――――――――――――――――――――――――――
:\第7章\ selectrowid.sql。
以数据表scott.student的索引为例,下面的数据就是以student_id数据列为例建立索引后的部分数据...[ 查看全文 ]