Summary of ten principles for optimizing basic statements in MySQL

Summary of ten principles for optimizing basic statements in MySQL

Preface

In the application of database, programmers have summed up a lot of experience through continuous practice. These experiences are some generally applicable rules. Every programmer should understand and remember them. When constructing SQL, develop good habits. Let's take a look at the detailed introduction without further ado:

MySQL basic statement optimization principles

1. Avoid operations on columns as much as possible, as this will cause index failure

select * from t where YEAR(d) >= 2011;

Optimized for

select * from t where d >='2011-0101'

2. When using JOIN, you should use a small result set to drive a large result set, and split complex JOIN queries into multiple queries, because JOINing multiple tables may cause more locking and blocking

3. When using LIKE, avoid using %%

4. Select the specified query field, do not check all of them, save memory

5. Use batch insert statements to save interactions

6. When the cardinality of limit is relatively large, use between. Between is faster than limit, but between also has its flaws. If there is a line break in the middle of the id or the middle part of the id is not read, the data will be less.

select * from t where 1 limit 100000,10

Optimized for

select * from t where id between 100000 and 100010

7. Do not use the rand function to fetch multiple random records

8. Avoid using NULL

9. Don’t use count(id) , use count(*) instead

10. Don’t do unnecessary sorting operations, but try to complete the sorting in the index as much as possible

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of MYSQL configuration parameter optimization
  • Mysql query the most recent record of the sql statement (optimization)
  • Detailed explanation of 30 SQL query optimization techniques for MySQL tens of millions of large data
  • Mysql optimization techniques for querying dates based on time
  • 10 SQL statement optimization techniques to improve MYSQL query efficiency
  • MySQL million-level data paging query optimization solution
  • Optimizing the performance of paging query for MySQL with tens of millions of data
  • MySQL Optimization Summary - Total Number of Query Entries
  • MYSQL development performance research: optimization method for batch inserting data
  • MySQL optimization strategy (recommended)

<<:  Linux kernel device driver system call notes

>>:  A brief discussion on several ways to pass parameters in react routing

Recommend

A brief discussion on why daemon off is used when running nginx in docker

I'm very happy. When encountering this proble...

CSS animation combined with SVG to create energy flow effect

The final effect is as follows: The animation is ...

MySQL 5.7.18 release installation guide (including bin file version)

The installation process is basically the same as...

Example of using CSS to achieve semi-transparent background and opaque text

This article introduces an example of how to use ...

10 bad habits to avoid in Docker container applications

There is no doubt that containers have become an ...

Vue implements custom "modal pop-up window" component example code

Table of contents Preface Rendering Example Code ...

Node.js makes a simple crawler case tutorial

Preparation First, you need to download nodejs, w...

How to clean up the disk space occupied by Docker

Docker takes up a lot of space. Whenever we run c...

Two usages of iFrame tags in HTML

I have been working on a project recently - Budou...

JavaScript Advanced Programming: Variables and Scope

Table of contents 1. Original value and reference...

JSONP cross-domain simulation Baidu search

Table of contents 1. What is JSONP 2. JSONP cross...

JavaScript BOM Explained

Table of contents 1. BOM Introduction 1. JavaScri...

Tutorial on installing GreasyFork js script on mobile phone

Table of contents Preface 1. Iceraven Browser (Fi...

How to use the markdown editor component in Vue3

Table of contents Install Importing components Ba...