Home > Database > Mysql Tutorial > 索引组织表和普通表

索引组织表和普通表

WBOY
Release: 2016-06-07 15:59:46
Original
1407 people have browsed it

官方文档 http://docs.oracle.com/cd/B19306_01/server.102/b14220/schema.htm#CNCPT911 堆表(heap table)数据插入时时存储位置是随机的,主要是数据库内部块的空闲情况决定,获取数据是按照命中率计算,全表扫表时不见得先插入的数据先查到。 索引表(iot

官方文档

http://docs.oracle.com/cd/B19306_01/server.102/b14220/schema.htm#CNCPT911

堆表(heap table)数据插入时时存储位置是随机的,主要是数据库内部块的空闲情况决定,获取数据是按照命中率计算,全表扫表时不见得先插入的数据先查到。

索引表(iot)数据存储是把表按照索引的方式存储的,数据是有序的,数据的位置是预先定好的,与插入的顺序没有关系。

索引表的查询效率比堆表高(相当于查询索引的效率),插入数据的速度比堆表慢。


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template