Summary of the execution issues between mysql max and where

Summary of the execution issues between mysql max and where

Execution problem between mysql max and where

Execute sql:

CREATE TABLE `grades` (
 `id` int(20) NOT NULL AUTO_INCREMENT,
 `student_id` int(20) NOT NULL,
 `subject` varchar(20) COLLATE utf8_bin DEFAULT NULL,
 `grades` varchar(20) COLLATE utf8_bin DEFAULT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
insert into `grades`(`id`,`student_id`,`subject`,`grades`) values ​​(1,1,'Chinese','80'),(2,1,'Mathematics','89'),(3,2,'Chinese','90');
CREATE TABLE `student` (
 `id` int(20) NOT NULL AUTO_INCREMENT,
 `name` varchar(20) COLLATE utf8_bin DEFAULT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
insert into `student`(`id`,`name`) values ​​(1,'xiaoming'),(2,'xiaohong'),(3,'xiaobai');

Execution Result:

Execution result 1:

Execution result 2:

Execution result 3:

Execution result 4:

Execution result 5:

It can be seen from this that:

1.max is executed before the where condition,

2. Group by is executed before max

3. When where and group by appear at the same time, the where condition is executed first

Summarize

The above is a summary of the execution problems between mysql max and where that I introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • MySQL left-join multi-table query where condition writing example
  • MySQL Where conditional statement introduction and operator summary
  • MySQL stored procedure parameter passing to implement where id in (1,2,3,...) example
  • Analyzing the difference between using on and where filtering in MySQL left (right) join
  • UCenter info: MySQL Query Error SQL:SELECT value FROM [Table]vars WHERE noteexists
  • MYSQL where 1=1 judgment function description
  • Tutorial on using the max() function in MySQL
  • Analysis of max_connections configuration parameters for MySQL performance optimization
  • How to configure the max_allowed_packet parameter in MySQL (to avoid failure in writing or updating large data)

<<:  Very practical Tomcat startup script implementation method

>>:  Detailed explanation of the working principle and solution of Js modularization

Recommend

Web page header optimization suggestions

Logo optimization: 1.The logo image should be as ...

Vue page monitoring user preview time function implementation code

A recent business involves such a requirement tha...

Vue routing to implement login interception

Table of contents 1. Overview 2. Routing Navigati...

MySQL complete collapse: detailed explanation of query filter conditions

Overview In actual business scenario applications...

Solution to the problem of MySQL deleting and inserting data very slowly

When a company developer executes an insert state...

Summary of commonly used operators and functions in MySQL

Let’s build the data table first. use test; creat...

Introduction to cloud native technology kubernetes (K8S)

Table of contents 01 What is Kubernetes? 02 The d...

CSS inheritance method

Given a div with the following background image: ...

Vue integrates a rich text editor that supports image zooming and dragging

need: According to business requirements, it is n...

Problems and solutions of using TweenMax animation library in angular

I have nothing to do recently, so I tinker with C...

MySQL table addition, deletion, modification and query basic tutorial

1. Create insert into [table name] (field1, field...

ES6 loop and iterable object examples

This article will examine the ES6 for ... of loop...

Detailed explanation of the application of CSS Sprite

CSS Sprite, also known as CSS Sprite, is an image...

The button has a gray border that is ugly. How to remove it?

I used the dialog in closure and drew a dialog wit...

How to install and configure the supervisor daemon under centos7

Newbie, record it yourself 1. Install supervisor....