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定位到具體的行讀取數據(回表)

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