A brief analysis of the difference between and and where in MySQL connection query

A brief analysis of the difference between and and where in MySQL connection query

1. Create a table

CREATE TABLE `student` (
  `id` int(11) NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
  `age` int(11) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;


INSERT INTO `student` VALUES (1, '张三', 12);
INSERT INTO `student` VALUES (2, '李四', 12);
INSERT INTO `student` VALUES (3, '王五', 12);
INSERT INTO `student` VALUES (4, '赵六', 12);
INSERT INTO `student` VALUES (5, '孙七', 12);
INSERT INTO `student` VALUES (6, 'turtle', 12);
CREATE TABLE `grade` (
  `id` int(11) NOT NULL,
  `sid` int(11) NULL DEFAULT NULL,
  `grade` int(11) NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;

INSERT INTO `grade` VALUES (1, 1, 100);
INSERT INTO `grade` VALUES (2, 2, 80);
INSERT INTO `grade` VALUES (3, 3, 99);
INSERT INTO `grade` VALUES (4, 4, 66);

2. Inner join

There is no difference between and and where in inner joins. Both use the results after the join to perform conditional screening.

2.1 No conditions

2.2 and Condition

2.3 where condition

3. left join

3.1 No conditions

3.2 and Condition

In left join, the left table is fully matched for connection, and then AND is used for filtering; the left table data that does not meet the conditions is retained, and the right table data is null.

3.3 where condition

In left join, the left table is fully matched for connection, and then the where clause is used for filtering; only the data that meets the conditions is filtered.

4. right join

Same as left join in 3, except that the base tables are reversed.

5. Conclusion

  • For all connections, use where to filter the data rows that meet the conditions after the connection, and only keep the data rows that meet the conditions;
  • When left join is used, and the left table is used as the main table. All data in the left table is retained, and the data rows that do not meet the conditions are set to null in the right table.
  • When right join is used, and the right table is used as the main table. All data in the right table is retained, and the left table data that does not meet the conditions is null;

This is the end of this article about the difference between and and where in MySQL connection query. For more relevant MySQL connection query and where content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Mysql multi-condition query statement with And keyword
  • MySQL conditional query and or usage and priority example analysis
  • Priority analysis of and or queries in MySQL
  • MySQL left-join multi-table query where condition writing example
  • An example of how PHP converts MySQL query results into an array and concatenates them with where
  • Analysis of the difference between placing on and where in MySQL query conditions

<<:  Summary of Docker Consul container service updates and issues found

>>:  Introduction to CSS style introduction methods and their advantages and disadvantages

Recommend

Website Design Experience Summary of Common Mistakes in Website Construction

Reminder: Whether it is planning, designing, or de...

Sample code for implementing 3D book effect with CSS

Without further ado, let's take a look at the...

DOCTYPE type detailed introduction

<br />We usually declare DOCTYPE in HTML in ...

MySQL 5.7.19 installation and configuration method graphic tutorial (win10)

Detailed tutorial on downloading and installing M...

Tutorial on upgrading, installing and configuring supervisor on centos6.5

Supervisor Introduction Supervisor is a client/se...

Summary of Creating and Using Array Methods in Bash Scripts

Defining an array in Bash There are two ways to c...

Detailed explanation of 10 common HTTP status codes

The HTTP status code is a 3-digit code used to in...

Practical example of Vue virtual list

Table of contents Preface design accomplish summa...

How to reference jQuery in a web page

It can be referenced through CDN (Content Delivery...

Several specific methods of Mysql space cleaning

Table of contents Preface 1. Check the file disk ...

Share a Markdown editor based on Ace

I think editors are divided into two categories, ...

Practice of deploying web applications written in Python with Docker

Table of contents 1. Install Docker 2. Write code...

Website Color Schemes Choosing the Right Colors for Your Website

Does color influence website visitors? A few year...

How to automatically delete records before a specified time in Mysql

About Event: MySQL 5.1 began to introduce the con...