A00-211日本語試験無料問題集「SASInstitute SAS Base Programming for SAS 9 (A00-211日本語版) 認定」




data newstaff;
set staff;
start_date = today();
run;


capacity airplanetype staff
150 Large 10


SASDATA TWO XY
52
31
56

data sasuser.one two sasdata.three;
set sasdata two;
if x = 5 then output sasuser.one;
else output sasdata two;
run;

Read the table


proc freq data = sales;
<insert TABLES statement here>
run;



data WORK.ACCOUNTING;
set WORK.DEPARTMENT;
length EmpId $6;
CharEmpid=EmpId;
run;


PRICES
Prodid priceproducttypesalesreturns K1255.10NETWORK152 B132S 2.34HARDWARE30010 R18KY2 1.29SOFTWARE255 3KL8BY 6.37HARDWARE12515
DY65DW 5.60HARDWARE455
DGTY23 4.55HARDWARE672

data hware inter cheap;
set prices(keep = productype price);
if producttype = 'HARDWARE' then output hware; else if producttype = 'NETWORK'
then output
inter; if price le 5.00;
run;
if producttype = 'HARDWARE' then output hware; else if producttype = 'NETWORK' then
output
inter; if price le 5.00;
run;




proc print data=WORK.ONE;
where Num=contains (1);
run;
正解:
No output is generated