Pause query execution. This function pauses the script for a specified number of seconds, returning 0 if successful or 1 if interrupted.
SLEEP(duration)Sleeps (pauses) for the number of seconds given by the duration argument, then returns 0. If SLEEP() is interrupted, it returns 1. The duration may have a fractional part given in microseconds.
Statements using the SLEEP() function are not .
This page is licensed: GPLv2, originally from
SELECT SLEEP(5.5);
+------------+
| SLEEP(5.5) |
+------------+
| 0 |
+------------+
1 row in set (5.50 sec)