Valid in: | DATA step and PROC step |
Default: | the first observation in the data set |
Restrictions: | use STARTOBS= with input data sets only
cannot be used with OBS= system and data set option or FIRSTOBS= system and data set option |
Engine: | SPD Engine only |
libname growth spde 'c:\temp'; data growth.teens; input Name $ Sex $ Age Height Weight; list; datalines; Alfred M 14 69.0 112.5 Carol F 14 62.8 102.5 James M 13 57.3 83.0 Janet F 15 62.5 112.5 Judy F 14 64.3 90.0 Philip M 16 72.0 150.0 Zeke M 14 71.1 105.1 Alice F 14 65.1 91.0 William M 15 66.5 112.0 Mike M 16 67.0 105.1 ; proc print data=growth.teens (startobs=5); where age >13; title 'WHERE age>13 using SPD Engine'; run;
libname growth v9 'c:\temp'; data growth.teens; input Name $ Sex $ Age Height Weight; list; datalines; Alfred M 14 69.0 112.5 Carol F 14 62.8 102.5 James M 13 57.3 83.0 Janet F 15 62.5 112.5 Judy F 14 64.3 90.0 Philip M 16 72.0 150.0 Zeke M 14 71.1 105.1 Alice F 14 65.1 91.0 William M 15 66.5 112.0 Mike M 16 67.0 105.1 ; proc print data=growth.teens (firstobs=5); where age >13; title 'WHERE age>13 using the V9 Engine'; run;