The and condition and where condition differences after MySQL left join on

Source: Internet
Author: User

Such as:

SELECT * from Table_1 left joins table_2 on table_1.id = table_2.t1_id and table_2.status > 0

SELECT * from table_1 LEFT join table_2 on table_1.id = table_2.t1_id where table_2.status > 0

Two queries were found to be different.

Why there is a difference, which is related to the where query order.

(1): On the following filter conditions are mainly related to the table "and for the primary table filter conditions do not apply."

(2): The filter criteria for the primary table should be placed behind the where, should not be placed behind

(3): We have to differentiate between related tables. If you want to condition query after the connection should be the query pieces

Placed after on.

If you want to filter after the connection is complete, you should put the condition behind the where

(4): For the association table we can actually do the subquery first and then join.

The and condition and where condition differences after MySQL left join on

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.