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  
└───┘