Detailed explanation of special phenomena examples of sleep function in MySQL

Detailed explanation of special phenomena examples of sleep function in MySQL

Preface

The sleep system function in MySQL has few practical application scenarios and is generally used for experimental testing. Yesterday, when testing, I accidentally discovered a special phenomenon of the sleep function. If the sleep function is used in a query statement, the sleep time is related to the records returned.

As shown in the following test:

mysql> create table test(id int);
Query OK, 0 rows affected (0.03 sec)

mysql> select *, sleep(6) from test;
Empty set (0.00 sec)

mysql> insert into test values(1);
Query OK, 1 row affected (0.00 sec)

mysql> select * ,sleep(6) from test;
+------+----------+
| id | sleep(6) |
+------+----------+
| 1 | 0 |
+------+----------+
1 row in set (6.00 sec)

mysql> insert into test value(2);
Query OK, 1 row affected (0.01 sec)

mysql> select * ,sleep(6) from test;
+------+----------+
| id | sleep(6) |
+------+----------+
| 1 | 0 |
| 2 | 0 |
+------+----------+
2 rows in set (12.00 sec) 

Test summary:

If, select *, sleep(n) from table, if the table record is empty, there will be no sleep. If the table record is one, then the sleep time is 1*n. If the table record is 2, then the sleep time is: 2*n ............ and so on.

In the official documentation, 12.24 Miscellaneous Functions does not mention this phenomenon, and I really don't know how to explain this situation. I speculated on several scenarios, but all of them were denied. Let me record this issue for now.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Solution to the MySQL Sleep Connection Excessive Problem
  • Case and solution of mysql reading failure caused by using sleep in PHP

<<:  Tutorial on using portainer to connect to remote docker

>>:  js and jquery to achieve tab status bar switching effect

Recommend

How to manually encapsulate paging components in Vue3.0

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

What is this in JavaScript point by point series

Understand this Perhaps you have seen this in oth...

js object to achieve data paging effect

This article example shares the specific code of ...

VMWare Linux MySQL 5.7.13 installation and configuration tutorial

This article shares with you the tutorial of inst...

MySQL 8.0.12 winx64 decompression version installation graphic tutorial

Recorded the installation of mysql-8.0.12-winx64 ...

MySQL incremental backup and breakpoint recovery script example

Introduction Incremental backup means that after ...

Steps to split and compress CSS with webpack and import it with link

Let's take a look at the code file structure ...

Basic usage of exists, in and any in MySQL

【1】exists Use a loop to query the external table ...

How to set Tomcat as an automatically started service? The quickest way

Set Tomcat to automatically start the service: I ...

Implementation of importing and exporting docker images

Docker usage of gitlab gitlab docker Startup Comm...

Tutorial on installing VMWare15.5 under Linux

To install VMWare under Linux, you need to downlo...

HTML Language Encyclopedia

123WORDPRESS.COM--HTML超文本标记语言速查手册<!-- --> !D...

Summary of HTML formatting standards for web-based email content

1. Page requirements 1) Use standard headers and ...

A case study on MySQL optimization

1. Background A sql-killer process is set up on e...