Slide 54
Slide 54 text
Copyright © 2020, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2020 Oracle and/or its affiliates. blogs.oracle.com/sql www.youtube.com/c/TheMagicOfSQL @ChrisRSaxon
Join type Big-O Index on join cols?
Hash Join O ( #T1 + #T2 ) No impact
Merge Join O ( #T1 log #T1
+ #T2 log #T2
)
Avoid sort of outer
table
Nested
Loops
O ( #T1 * #T2 ) Lookup inner table