MySQL SQL statement performance tuning simple example

MySQL SQL statement performance tuning simple example

MySQL SQL statement performance tuning simple example

When doing server development, sometimes there are certain requirements for concurrency, and sometimes it is a certain SQL statement, such as a stored procedure, that affects the speed. Now suppose that during the execution of the server code, a certain SQL statement executes slowly. How can we optimize it?

Suppose now the server code executes the following SQL stored procedure very slowly:

call sp_wplogin_register(1, 1, 1, '830000', '222222');

You can debug as follows:

1. Open mysql profiling:


2. Then execute the SQL that needs to be tuned. Here we execute two SQL statements, one commit statement and the other one is to call the above stored procedure statement:


3. Use profiling to display the execution time of each SQL statement. The stored procedure consists of a series of SQL statements, which are also broken down and displayed here:


It can be seen that the execution speed of the sql marked in red is far from the same level as other sql statements. We optimize this row, for example, by creating an index for the field f_phone.

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • How to install and configure MySQL and change the root password
  • 10 ways to optimize MySQL performance
  • Two important parameters in Mysql optimization and tuning: table_cache and key_buffer
  • MySQL slow query search and tuning test
  • How to check and tune mysql performance
  • Analyze MySQL replication and tuning principles and methods

<<:  Creating a file system for ARM development board under Linux

>>:  Steps to transplant the new kernel to the Linux system

Recommend

SQL query for users who have placed orders for at least seven consecutive days

Create a table create table order(id varchar(10),...

React tsx generates random verification code

React tsx generates a random verification code fo...

JavaScript realizes the queue structure process

Table of contents 1. Understanding Queues 2. Enca...

TypeScript namespace merging explained

Table of contents Merge namespaces with the same ...

Introduction to several ways to introduce CSS in HTML

Table of contents 1. Embed CSS styles directly in...

MySql common query command operation list

MYSQL commonly used query commands: mysql> sel...

MYSQL string forced conversion method example

Preface Since the types of the same fields in the...

How to create a test database with tens of millions of test data in MySQL

Sometimes you need to create some test data, base...

Code for aligning form checkbox and radio text

Alignment issues like type="radio" and t...

Vue custom bullet box effect (confirmation box, prompt box)

This article example shares the specific code of ...

Detailed explanation of fuser command usage in Linux

describe: fuser can show which program is current...

On good design

<br />For every ten thousand people who answ...

Example steps for using AntV X6 with Vue.js

Table of contents 0x0 Introduction 0x1 Installati...

ElementUI implements the el-form form reset function button

Table of contents Business scenario: Effect demon...

In-depth analysis of Vue's responsive principle and bidirectional data

Understanding object.defineProperty to achieve re...