現在のDATAステップの実行を中止します。
| 該当要素: | DATAステップ |
| カテゴリ: | アクション |
| 種類: | 実行 |
stop;
if idcode=9999 then stop;
select (a); when (0) output; otherwise stop; end;
data sample;
do sampleobs=1 to totalobs by 10;
set master.research point=sampleobs nobs=totalobs;
output;
end;
stop;
run;