The efficiency of MySQL nested query and connection query

Source: Internet
Author: User

Execute the statement as follows: SELECT count (DISTINCT L1) from T1 where L1 in (select L2 from T2 where l3= ' xxx ') feels very slow (a few 10 seconds),

But performing subqueries individually select L2 from T2 where l3= ' xxx ' or removing subqueries this direct execution of select count (DISTINCT L1) from T1 is faster.

Changing the statement to join is much faster (millisecond level), with the following modified statements: SELECT COUNT (DISTINCT L1) from T1 inner join T2 where t1.l1=t2.l2 and t2.l3= ' xxx '.

Specific cause analysis visible: https://www.cnblogs.com/Bccd/p/6607515.html

The efficiency of MySQL nested query and connection query

Related Article

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.