下面语句,如何add_index_outline使用,index(r idx_createDate) index(c idx_id)这两个索引?
```select count(*)
from
table1 r
left join table2 c
on r.channel_id = c.id
left join table3 m on m.No = r.No
left join table4 master on master.id = m.chantId
where
1 = 1
and c.uuid = r.aChannelCode
and r.createDate >= timestamp('2024-10-17 00:00:00.000000')
and r.createDate <= timestamp('2024-12-24 23:59:59.999999')
order by
r.id desc
LIMIT
15
或者
在当我使用UNION ALL拼接语句时,如何使用add_index_outline
```dbms_outln.add_index_outline('<Schema_name>','<Digest>',<Position>,'<Type>','<Hint>','<Scope>','<Query>');
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。