Suppose you want to drop the variables Manager and EmpDept from the Payroll.EmpMast data set. In the following program, where should you specify the DROP= option?
Manager
EmpDept
data payroll.empmast; set payroll.employee; if empdept in ("Finance","Legal"); run;
Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.