Explanation of the execution priority of mySQL keywords

Explanation of the execution priority of mySQL keywords

As shown below:

from table

where condition

group by field

Form virtual tables and fields, aggregate and add fields

having filter data

distinct

order by field asc,desc

limit limit number of entries

Select List Records

First, the data is loaded from the table into memory according to the where constraint, so the where condition acts before the data, and then grouped according to the field, forming a virtual table in memory containing the field.

If there is an aggregate function at this time, the aggregate function is executed first, and the aggregate function field is also added to the virtual table. Then the having record filter is performed. After the filtering is completed, the data is deduplicated, sorted, restricted, and other operations are performed before display.

Additional knowledge: The execution order of mysql where conditions and is from left to right

When I was working on this function before, I encrypted the three conditions through md5 to get a string field unique_key, and set this field as the unique index. I hope to use this unique index when searching, without having to search for the three conditions separately. At the same time, I used the replace method to ensure that if the data is updated under the same three conditions, there will be only one record in the database.

Later I found that the list query must open these three conditions, so I had to put the unique_key to the left of the where condition and, and the efficiency of filtering by unique_key would not be bad.

You should consider all aspects of MySQL optimization when writing.

The above explanation of the execution priority of mySQL keywords is all I want to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • How to optimize MySQL index function based on Explain keyword
  • Detailed explanation of mysql execution plan id is empty (UNION keyword)
  • jq.ajax+php+mysql to implement keyword fuzzy query (example explanation)
  • Detailed Introduction to the MySQL Keyword Distinct
  • MySql multi-condition query statement with OR keyword

<<:  Example code for element multiple tables to achieve synchronous scrolling

>>:  Briefly describe how to install Tomcat image and deploy web project in Docker

Recommend

Brief analysis of the introduction and basic usage of Promise

Promise is a new solution for asynchronous progra...

Implementation of element shuttle frame performance optimization

Table of contents background Solution New Questio...

Textarea tag in HTML

<textarea></textarea> is used to crea...

HTML insert image example (html add image)

Inserting images into HTML requires HTML tags to ...

Analysis of Vue element background authentication process

Preface: Recently, I encountered a management sys...

Details of watch monitoring properties in Vue

Table of contents 1.watch monitors changes in gen...

Fixed table width table-layout: fixed

In order to make the table fill the screen (the re...

Vue sample code for online preview of office files

I'm working on electronic archives recently, ...

Completely uninstall MySQL database in Windows system to reinstall MySQL

1. In the control panel, uninstall all components...

3 ways to create JavaScript objects

Table of contents 1. Object literals 2. The new k...

How to configure MySQL on Ubuntu 16.04 server and enable remote connection

background I am learning nodejs recently, and I r...

What are the benefits of semantic HTML structure?

one: 1. Semantic tags are just HTML, there is no ...