LoginSignup
0
0

More than 1 year has passed since last update.

BigQueryでsleep関数

Last updated at Posted at 2022-01-25

慣れればなんということもなさそうだけれど、一応メモ。

DECLARE DELAY_TIME DATETIME;
DECLARE WAIT BOOL;

BEGIN 
  SET WAIT = TRUE;
  SET DELAY_TIME = DATE_ADD(CURRENT_DATETIME, INTERVAL 10 SECOND);
  WHILE WAIT DO
    IF (DELAY_TIME < CURRENT_DATETIME) THEN
      SET WAIT = FALSE; 
    END IF; 
  END WHILE;
END

参考文献

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0