Mysqlin subquery is easy to optimize

Source: Internet
Author: User
When mysqlin subqueries are simply optimized to a large number, do not use in nested subqueries. The performance is poor and it is easy to get stuck .? The simple adjustment method is as follows: selectuid, nick_namefromuc_userswhereuidin (selectfidfromuc_followwhereuid # uid #)? It can be split into: 1. selectfidfromuc_followwher

When a large number of mysql in subqueries are simply optimized, do not use in nested subqueries. The performance is poor and it is easy to get stuck. ? The simple adjustment method is as follows: select uid, nick_name from uc_users where uid in (select fid from uc_follow where uid = # uid #)? It can be split into: 1. select fid from uc_follow wher

Simple Optimization of mysql in subqueries

In a large number of cases, do not use in nested subqueries. The performance is poor and it is easy to get stuck.

?

The following is a simple adjustment method:

Select uid, nick_name from uc_users where uid in (select fid from uc_follow where uid = # uid #)

?

It can be divided:

1. select fid from uc_follow where uid = # uid #

Pass the result 1 to 2.

2. select uid, nick_name from uc_users where uid in ($ fids $)

?

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.