How and when to use SLEEP() correctly in MySQL?

Michal M picture Michal M · Nov 26, 2010 · Viewed 126.9k times · Source

In relation to my other question today I am wondering how to use MySQL's SLEEP(duration) correctly.

From what I gathered reading MySQL Dev forums and very vague description in MySQL Docs I can't use it this way:

SELECT ...
SLEEP(1); /* wait for a second before another SELECT */
SELECT ...

So what is it good for then?

Answer

Konerak picture Konerak · Nov 26, 2010
SELECT ...
SELECT SLEEP(5);
SELECT ...

But what are you using this for? Are you trying to circumvent/reinvent mutexes or transactions?