These hints specify a scan operation, which can be tablescan, indexscan, or indexonlyscan.
1 | [no] tablescan|indexscan|indexonlyscan(table [index]) |
indexscan and indexonlyscan hints can be used only when the specified index belongs to the table.
Scan operation hints can be used for row-store tables, column-store tables, HDFS tables, HDFS foreign tables, OBS tables, and subquery tables. HDFS tables include primary tables and delta tables. The delta tables are invisible to users. Therefore, scan operation hints are used only for primary tables.
To specify an index-based hint for a scan, create an index named i on the i_item_sk column of the item table.
1 | create index i on item(i_item_sk); |
Hint the query plan in Examples as follows:
1 2 | explain select /*+ indexscan(item i) */ i_product_name product_name ... |
item is scanned based on an index. The optimized plan is as follows: