SyntaxFix
Write A Post
Hire A Developer
Questions
If you don't want to SELECT SLEEP(1);, you can also DO SLEEP(1); It's useful for those situations in procedures where you don't want to see output.
SELECT SLEEP(1);
DO SLEEP(1);
e.g.
SELECT ... DO SLEEP(5); SELECT ...