When
when プレフィックスとサフィックスは、条件節の作成に使用します。条件節は、ステートメントまたは exit 節を実行するかどうかを決定します。これは、if..end if ステートメントの簡単な代替として使用されることがあります。
構文:
(when condition statement | exitstatement when condition )
statement または exitstatement は、condition が True と評価された場合に限り、実行されます。
when プレフィックスは、他の when や unless プレフィックスなどの 1 つまたは複数のステートメントを含むステートメントで使用できます。
構文:
引数 | 説明 |
---|---|
condition | True または False の評価を実施する論理式。 |
statement | 制御ステートメント以外の任意の QlikView スクリプト ステートメント。 |
exitstatement | exit for、exit do、exit sub 節、あるいは exit script ステートメント。 |
exit script when A=1;
when A=1 LOAD * from myfile.csv;
when A=1 unless B=2 drop table Tab1;