# where=データセットオプション

<https://documentation.sas.com/doc/ja/pgmsascdc/v_061/ledsoptsref/p0ny9o8t8hc5zen1qn3ft9dhtsxx.htm>

データセット行の取得条件を指定する。
条件部分は`()`で括り、`where=(Height>60 and Weight>100)`のように記述する必要がある。
(`keep=`や`drop=`の後に`where=`が処理される)

``` sas
data work.test;
  set sashelp.class(where=(Height>60 and Weight>100));
run;