mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
10 lines
213 B
MySQL
10 lines
213 B
MySQL
create procedure sleep (in sleeptime integer)
|
|
begin
|
|
declare wait_until timestamp;
|
|
|
|
set wait_until = (current timestamp + sleeptime seconds);
|
|
while (wait_until > current timestamp)
|
|
do
|
|
end while;
|
|
end!
|