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:
|
<<: Creating a file system for ARM development board under Linux
>>: Steps to transplant the new kernel to the Linux system
Create a table create table order(id varchar(10),...
React tsx generates a random verification code fo...
Table of contents 1. Understanding Queues 2. Enca...
Table of contents Merge namespaces with the same ...
Table of contents 1. Embed CSS styles directly in...
MYSQL commonly used query commands: mysql> sel...
Preface Since the types of the same fields in the...
Sometimes you need to create some test data, base...
Alignment issues like type="radio" and t...
This article example shares the specific code of ...
describe: fuser can show which program is current...
<br />For every ten thousand people who answ...
Table of contents 0x0 Introduction 0x1 Installati...
Table of contents Business scenario: Effect demon...
Understanding object.defineProperty to achieve re...