不安发夹

文章
5
资源
1
加入时间
2年10月17天

Oracle SQL查询速度优化leading和use_nl

今天写了一个SQL,表数据太大,表索引也加了,可和另一张表关联一起查一个月的数据总是很慢,大约要60多秒。优化后只用了0.07秒,记录一下防止以后忘记了。select /*+leading(t) use_nl(t, d)*/t.a,t.b,t.c, d.a,d.b,d.c from tablea t, tableb d where t.id = d.id and t.a is not null and t.b is not n...