Using the Sales data set list all the observations where Region is North and quantity is less than 60.
Run the program given below.
libname a15002 '/folders/myfolders/Learning'; data a15002;
infile '/folders/myfolders/Learning/sales.sas7bdat';
set a15002.sales (keep Patno VisitDate); where Region 'North' and quantity < 60;
run;
proc print data=a15002.sales noobs; run;