Solutions to Mysql index performance optimization problems

Solutions to Mysql index performance optimization problems

The optimization created by MySQL is to add indexes, but sometimes you may encounter situations where adding indexes cannot achieve the desired effect.

After adding so, the search still fails for all data. The reason is sql

EXPLAIN SELECT
      cs.sid,
      -- c.courseFrontTitle,
      -- c.imgBig,
      cs.studyStatus,
      coi.fee,
      -- act.PROC_INST_ID_ AS processId,
      cs.createDTM,
      cs.payStatus,
      cs.isCompleted,
      cs.saleChannel,
cs.isDelete
    FROM
      Biz_CourseStudy cs

    LEFT JOIN Biz_CourseOrderItem coi ON cs.sid = coi.CourseStudyID 
    
    WHERE
      cs.studentID = 00001 and cs.payStatus not in(0)

By looking at the index, the reason is that sid is bigint and the type of CourseStudyID is varchar. The reason is here. After changing the type to bigint, the query speed is instantly improved.

I have encountered such a situation. After analyzing the extra, I found that the speed was OK without order by 0.6s and added order by 6s.

The solution is to create an index for the order by. Here my order by is two fields.

order by endTime desc ,isDelete desc

Create a joint index for ab, index_a_b

SELECT xxx FROM manage a FORCE INDEX(index_a_b)
LEFT JOIN f_name f ON f.user_id = a.user_id
ORDER BY a.endTime desc,a.isDelete desc

At this time, looking at the performance, Using filesort has disappeared

The speed directly becomes 0.6s

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL performance optimization index pushdown
  • MySQL performance optimization: how to use indexes efficiently and correctly
  • Mysql performance optimization case - covering index sharing
  • Mysql performance optimization case study - covering index and SQL_NO_CACHE
  • MySQL performance optimization index optimization
  • The usage strategy and optimization behind MySQL indexes (high-performance index strategy)
  • MySQL uses indexes to optimize performance

<<:  Nginx compiled nginx - add new module

>>:  Detailed process of configuring Https certificate under Nginx

Recommend

Add a startup method to Linux (service/script)

Configuration file that needs to be loaded when t...

js canvas to realize the Gobang game

This article shares the specific code of the canv...

Detailed explanation and extension of ref and reactive in Vue3

Table of contents 1. Ref and reactive 1. reactive...

Detailed explanation of the 4 codes that turn the website black, white and gray

The 2008.5.12 Wenchuan earthquake in Sichuan took...

Detailed explanation of html download function

The new project has basically come to an end. It ...

Set IE8 to use IE7 style code

<meta http-equiv="x-ua-compatible" co...

Summary of the Differences between SQL and NoSQL

Main differences: 1. Type SQL databases are prima...

Bootstrap+Jquery to achieve calendar effect

This article shares the specific code of Bootstra...

Super detailed tutorial to implement Vue bottom navigation bar TabBar

Table of contents Project Introduction: Project D...

Implementing access control and connection restriction based on Nginx

Preface Nginx 's built-in module supports lim...

Markup language - CSS layout

Click here to return to the 123WORDPRESS.COM HTML ...

Talking about Less and More in Web Design (Picture)

Less is More is a catchphrase for many designers....

Solution to forgetting mysql password under linux

The problem is as follows: I entered the command ...