Nested loops join, hash join, sort merge Join (2015-2-4 learning Diary)

Source: Internet
Author: User

==>> nested loops Join, hash join, sort merge Join


-->> Nested Loops Join

SELECT * from/*+leading (t1) use_nl (T2) */from T1,T2

where t1.id=t2.t1_id;

The meaning of this hint: leading (t1) means that forcing the first access to the table T1,USE_NL means forcing the use of nested loops.

-->> Hash Connection

SELECT * from/*+leading (t1) use_hash (T2) */from T1,T2

where t1.id=t2.t1_id;

-->> Sort Merge Connections

Select/*+orderd use_merge (T2) */* from T1,T2

where t1.id=t2.t1_id;

The sort merge connection is not driven with the concept of being driven.


Nested loops join, hash join, sort merge Join (2015-2-4 learning Diary)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.