Detailed analysis of the problem of adding where conditions using left join in MySQL

Detailed analysis of the problem of adding where conditions using left join in MySQL

Current demand:

There are two tables, group and factor. One group corresponds to multiple factors. Now we want to query the valid groups and the corresponding valid factors . Both tables have the isDel logical deletion flag.

insert image description here

The first mistake :

SELECT g.*,f.* FROM groups g LEFT JOIN factor f ON f.groupId = g.id where g.isDel=0 and f.isDel=0

The LEFT JOIN keyword returns all rows from the left table (table_name1), even if there are no matching rows in the right table (table_name2).
If the table on the left does not have corresponding data in the table on the right, the query cannot be done because of the code problem of f.isDel=0 .

Wrong way of writing:

SELECT g.*,f.* FROM groups g LEFT JOIN factor f ON f.groupId = g.id and g.isDel=0 and f.isDel=0

This way of writing g.isDel=0 will not take effect, resulting in incorrect query data.

Cause Analysis:

Several knowledge points about where and on conditions in left join:

  • Multi-table left join will generate a temporary table and return it to the user
  • The where condition is to filter the last generated temporary table and filter out the records that do not meet the where condition.
  • The on condition is to conditionally filter the right table of the left join, but all rows of the left table are still returned, and those that are not in the right table are filled with NULL
  • If there are restrictions on the left table in the on condition, all rows of the left table will be returned regardless of whether the condition is true or false, but the matching values ​​of the right table will be affected. That is to say, the restriction conditions of the left table in on only affect the matching content of the right table, and do not affect the number of returned rows.

Correct way to write it:

SELECT g.*,f.* FROM groups g LEFT JOIN factor f ON f.groupId = g.id and f.isDel=0 where g.isDel=0

in conclusion:

1. To add conditional restrictions to the left table, add them in the where condition and do not put them after on.
2. Adding conditional restrictions to the right table needs to be placed after on. Adding them in the where condition will cause problems with the number of data rows.

This is the end of this article about analyzing the problem of using left join to add where conditions in MySQL. For more relevant content about adding where to MySQL left join, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Analysis of the difference between the usage of left join setting conditions in on and where in mysql
  • Introduction to the difference between on and where conditions in MySQL left join operation
  • Analyzing the difference between using on and where filtering in MySQL left (right) join

<<:  JavaScript to implement search data display

>>:  10 Underused or Misunderstood HTML Tags

Recommend

Implementation of one-click TLS encryption for docker remote api

Table of contents 1. Change the 2375 port of Dock...

XHTML Web Page Tutorial

<br />This article is mainly to let beginner...

How to use yum to configure lnmp environment in CentOS7.6 system

1. Installation version details Server: MariaDB S...

js precise calculation

var numA = 0.1; var numB = 0.2; alert( numA + num...

Discussion on image path issues in css (same package/different package)

In CSS files, sometimes you need to use background...

How to simplify Redux with Redux Toolkit

Table of contents Problems Redux Toolkit solves W...

Simple implementation of mini-vue rendering

Table of contents Preface Target first step: Step...

Detailed explanation of the use of MySQL paradigm

1. Paradigm The English name of the paradigm is N...

MySQL derived table (Derived Table) simple usage example analysis

This article uses an example to describe the simp...

Login interface implemented by html+css3

Achieve results First use HTML to build a basic f...

MySQL REVOKE to delete user permissions

In MySQL, you can use the REVOKE statement to rem...

MySQL 8.0.16 installation and configuration tutorial under Windows 10

This article shares with you the graphic tutorial...

Simple web page code used in NetEase blog

How to use the code in NetEase Blog: First log in...

Tomcat configuration and how to start it in Eclipse

Table of contents How to install and configure To...

MySQL kill command usage guide

KILL [CONNECTION | QUERY] processlist_id In MySQL...