Oracle表的访问方式

1、table access full(全表扫描)

2、table access by rowid(通过rowid的表存取)

3、table access by index rowid、table access by index scan(索引扫描)

index unique scan(索引唯一扫描)

index range scan(索引范围扫描)

index full scan(索引全扫描)

index fast full scan(索引快速扫描)

index skip scan(索引跳跃扫描)

索引扫描的步骤:

1、扫描索引得到对应的rowid

2、通过rowid定位到具体的行读取数据(回表)

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章