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 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:
|
<<: Linux kernel device driver system call notes
>>: A brief discussion on several ways to pass parameters in react routing
I'm very happy. When encountering this proble...
The final effect is as follows: The animation is ...
The installation process is basically the same as...
This article introduces an example of how to use ...
There is no doubt that containers have become an ...
Table of contents Preface Rendering Example Code ...
This article records the installation tutorial of...
Preparation First, you need to download nodejs, w...
Docker takes up a lot of space. Whenever we run c...
I have been working on a project recently - Budou...
Table of contents 1. Original value and reference...
Table of contents 1. What is JSONP 2. JSONP cross...
Table of contents 1. BOM Introduction 1. JavaScri...
Table of contents Preface 1. Iceraven Browser (Fi...
Table of contents Install Importing components Ba...