%let cecl =/sas/model/model_dev/enterprise_inputs/published_data/cecl/M201706; libname cecl "&cecl"; proc sql ; CREATE TABLE WORK AS select * from cecl.ar_model_v_20170630 where (firstobs = 100 obs = 200) & (first obs = 400 obs = 500) ; quit; like try to retrieve row number 100 to 200 and then 500 to 600 from same table
... View more