SLEEP
Pauses execution for a specified number of seconds. Returns 0 on success.
Analyze Syntax
func.sleep(<seconds>)
Analyze Examples
func.sleep(1)
┌───┐
│ 0 │
└───┘
SQL Syntax
SLEEP(<seconds>)
SQL Examples
SELECT SLEEP(1);
┌───┐
│ 0 │
└───┘
Pauses execution for a specified number of seconds. Returns 0 on success.
func.sleep(<seconds>)
func.sleep(1)
┌───┐
│ 0 │
└───┘
SLEEP(<seconds>)
SELECT SLEEP(1);
┌───┐
│ 0 │
└───┘