1. Slow query log 1.1 MySQL log types Logs are used to record the operation of the database and various operations performed by users on the database. When a database failure occurs, the problem can be analyzed and solved based on the logs , thereby restoring the database. 1.2 Understanding Slow Query Logs The slow query log is used to record statements in the MySQL database whose response time exceeds the specified threshold . The slow query log is also often referred to as a slow log because it targets not only 1.3 How to enable slow query log command The slow query log can be set temporarily through commands or permanently by modifying the configuration file. Check whether the slow query log is enabled show variables like 'slow%'; Temporarily enable slow query log set slow_query_log='ON'; set long_query_time=1; Slow query log file location show variables like '%datadir%'; 2. Query Analyzer - EXPLAIN 2.1 Introduction to explain The explain command can view the execution plan of the SQL statement. When explain is used with a SQL statement, MySQL displays information from the optimizer about the statement's execution plan. That is, MySQL explains how it will process the statement , including information about how to join the tables and in what order. What can explain do?
2.2 Use of explain The use of explain is very simple. You only need to add the Command Explanation: 3. Basic use of index 3.1 What is an index? An index is a special data structure , similar to a book catalog, which can greatly improve the query efficiency of the database. If there is no index, when querying data, all records in the table must be scanned to find records that meet the conditions. This full table scan query efficiency is very low . Summary : Improving query efficiency is like sorting garbage. Put things with the same effect together so that they are easier to find. 3.2 Common Index Types An index is a structure that sorts the values of one or more columns in a database table. An index can be used to quickly access specific records in a database table. The index of a database is like the table of contents of a book, which can speed up the query of the database. The index is the key to fast search. If there is no index, a full table scan will be performed to find any specific data. 3.3 Use of Index Create Index Creating a normal index CREATE INDEX indexName ON tableName(columnName(length)); Creating a unique index CREATE UNIQUE INDEX indexName ON tableName(columnName(length)); Creating a composite index CREATE INDEX indexName ON tableName(columnName1, columnName2, …); Deleting an Index DROP INDEX [indexName] ON tableName; View Index SHOW INDEX FROM tableName; 3.4 Practical experience with indexing IV. Composite index leading column characteristics Composite index leading column feature : In MySQL, if you create a composite index List: Index not used select * from employee where salary=8800; select * from employee where dept='Department A'; select * from employee where salary=8800 and dept='Department A'; Use index : preceded by name select * from employee where name='liufeng'; select * from employee where name='liufeng' and salary=8800; select * from employee where name='liufeng' and salary=8800 and dept='Department A'; 5. Covering Index 5.1 What is a covering index? A covering index is also called an index coverage , which means that the A few notes about covering indexes :
5.2 How to determine whether a covering index is used When a query uses a covering index, you can see This concludes this article on the detailed usage of various MySQL indexes. For more information on the usage of MySQL indexes, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! My blog: https://blog.csdn.net/weixin_46654114 You may also be interested in:
|
<<: Detailed explanation of HTML form elements (Part 2)
>>: js to implement add and delete table operations
environment Linux 3.10.0-693.el7.x86_64 Docker ve...
When designing H5 layout, you will usually encoun...
In web front-end development, it is inevitable to ...
1: django-admin.py startproject project name 2: c...
drop procedure sp_name// Before this, I have told...
The fixed IP address of the centos-DVD1 version s...
Table of contents 1. Quickly recognize the concep...
String extraction without delimiters Question Req...
1|0 Background Due to project requirements, each ...
Today when I was writing a flash advertising code,...
1. Download 4 rpm packages mysql-community-client...
1.mysql-5.7.19-winx64.zip (this is the free insta...
I have written an example before, a simple UDP se...
Table of contents Document Object Model (DOM) DOM...
Preface Many web applications store data in a rel...