作者:ACHEn大魔王 | 来源:互联网 | 2023-10-11 21:56
功能描述
指明scan使用的方法,可以是tablescan、indexscan和indexonlyscan。
语法格式
[no] tablescan|indexscan|indexonlyscan(table [index])
参数说明
说明:
对于indexscan或indexonlyscan,只有hint的索引属于hint的表时,才能使用该hint。
scan hint支持在行列存表、obs表、子查询表上指定。
示例
为了hint使用索引扫描,需要首先在表item的i_item_sk列上创建索引,名称为i。
create index i on item(i_item_sk);
对示例中原语句使用如下hint:
explain
select /*+ indexscan(item i) */ i_product_name product_name ...
该hint表示:item表使用索引i进行扫描。生成计划如下所示: