文章目录
openGauss学习笔记-254 openGauss性能调优-使用Plan Hint进行调优-子链接块名的hint
254.1 功能描述
指明子链接块的名称。
254.2 语法格式
blockname (table)
254.3 参数说明
- table表示为该子链接块hint的别名的名称。
254.4 示例
explain select /*+nestloop(store_sales tt) */ * from store_sales where ss_item_sk in (select /*+blockname(tt)*/ i_item_sk from item group by 1);
该hint表示:子链接的别名为tt,提升后与上层的store_sales表关联时使用nestloop。生成计划如下所示: