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. 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). 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 Cause Analysis:Several knowledge points about where and on conditions in left join:
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. 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:
|
<<: JavaScript to implement search data display
>>: 10 Underused or Misunderstood HTML Tags
Table of contents 1. Change the 2375 port of Dock...
<br />This article is mainly to let beginner...
1. Installation version details Server: MariaDB S...
var numA = 0.1; var numB = 0.2; alert( numA + num...
In CSS files, sometimes you need to use background...
Table of contents Problems Redux Toolkit solves W...
Table of contents Preface Target first step: Step...
1. Paradigm The English name of the paradigm is N...
This article uses an example to describe the simp...
Achieve results First use HTML to build a basic f...
In MySQL, you can use the REVOKE statement to rem...
This article shares with you the graphic tutorial...
How to use the code in NetEase Blog: First log in...
Table of contents How to install and configure To...
KILL [CONNECTION | QUERY] processlist_id In MySQL...