请问子查询形成表的hint怎么写?

应该是bug来着,6.5.6以上的版本应该修复了

也可以通过下面这种方式绕一下

select /*+hash_join_probe(q) */  q.a,q.b from (
select  a,b from table1 partition(p0520) where c >100 group by a,b) as n join table1 partition(p0520)  q on  n.a=q.a group by a,b;