SLEEP
Syntax
SLEEP(duration)
Description
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 safe for statement-based replication.
Example
SELECT SLEEP(5.5); +------------+ | SLEEP(5.5) | +------------+ | 0 | +------------+ 1 row in set (5.50 sec)
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.